We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8aedbda commit 45f0a5eCopy full SHA for 45f0a5e
stubs/python-dateutil/dateutil/rrule.pyi
@@ -1,6 +1,6 @@
1
import datetime
2
from _typeshed import Incomplete
3
-from collections.abc import Iterable
+from collections.abc import Iterable, Iterator
4
from typing import Any
5
from typing_extensions import TypeAlias
6
@@ -27,7 +27,7 @@ SU: weekday
27
28
class rrulebase:
29
def __init__(self, cache: bool = ...) -> None: ...
30
- def __iter__(self): ...
+ def __iter__(self) -> Iterator[datetime.datetime]: ...
31
def __getitem__(self, item): ...
32
def __contains__(self, item): ...
33
def count(self): ...
0 commit comments