Skip to content

rrule.__iter__ return type #9828

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stubs/python-dateutil/dateutil/rrule.pyi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import datetime
from _typeshed import Incomplete
from collections.abc import Iterable
from collections.abc import Iterable, Iterator
from typing import Any
from typing_extensions import TypeAlias

Expand All @@ -27,7 +27,7 @@ SU: weekday

class rrulebase:
def __init__(self, cache: bool = ...) -> None: ...
def __iter__(self): ...
def __iter__(self) -> Iterator[datetime.datetime]: ...
def __getitem__(self, item): ...
def __contains__(self, item): ...
def count(self): ...
Expand Down