Fixed where query typing

This commit is contained in:
2022-01-15 11:11:14 +01:00
parent 1f445a99b2
commit 62ac976b99
7 changed files with 11 additions and 12 deletions

View File

@@ -43,7 +43,7 @@ class Iterable(IterableABC):
def count(self, func: Callable = None) -> int:
return count_query(self, func)
def distinct(self, func: Callable) -> IterableABC:
def distinct(self, func: Callable = None) -> IterableABC:
return self.__to_self(distinct_query(self, func))
def element_at(self, index: int) -> any: