diff --git a/stubs/pytz/pytz/lazy.pyi b/stubs/pytz/pytz/lazy.pyi index 00e43d79cd98..b0b5ca565aa2 100644 --- a/stubs/pytz/pytz/lazy.pyi +++ b/stubs/pytz/pytz/lazy.pyi @@ -13,8 +13,8 @@ class LazyDict(DictMixin[str, _VT]): class LazyList(list[_T]): # does not return `Self` type: - def __new__(cls, fill_iter=None) -> LazyList[_T]: ... + def __new__(cls, fill_iter: _T | None = None) -> LazyList[_T]: ... class LazySet(set[_T]): # does not return `Self` type: - def __new__(cls, fill_iter=None) -> LazySet[_T]: ... + def __new__(cls, fill_iter: _T | None = None) -> LazySet[_T]: ...