We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 901ffdc commit ec2714cCopy full SHA for ec2714c
stubs/pytz/pytz/lazy.pyi
@@ -13,8 +13,8 @@ class LazyDict(DictMixin[str, _VT]):
13
14
class LazyList(list[_T]):
15
# does not return `Self` type:
16
- def __new__(cls, fill_iter=None) -> LazyList[_T]: ...
+ def __new__(cls, fill_iter: _T | None = None) -> LazyList[_T]: ...
17
18
class LazySet(set[_T]):
19
20
- def __new__(cls, fill_iter=None) -> LazySet[_T]: ...
+ def __new__(cls, fill_iter: _T | None = None) -> LazySet[_T]: ...
0 commit comments