Skip to content

Commit 94bf4f4

Browse files
committed
Add type hint
1 parent fe9ae5d commit 94bf4f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Iterator/Conceptual/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def __iter__(self) -> AlphabeticalOrderIterator:
107107
def get_reverse_iterator(self) -> AlphabeticalOrderIterator:
108108
return AlphabeticalOrderIterator(self, True)
109109

110-
def add_item(self, item: Any):
110+
def add_item(self, item: Any) -> None:
111111
self._collection.append(item)
112112

113113

0 commit comments

Comments
 (0)