Skip to content
Open
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
6 changes: 3 additions & 3 deletions stubs/yt-dlp/yt_dlp/utils/_utils.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -286,10 +286,10 @@ def hyphenate_date(date_str: str) -> str: ...
class DateRange:
start: date
end: date
def __init__(self, start: date | None = None, end: date | None = None) -> None: ...
def __init__(self, start: str | None = None, end: str | None = None) -> None: ...
@classmethod
def day(cls, day: date) -> Self: ...
def __contains__(self, date: date) -> bool: ...
def day(cls, day: str | None) -> Self: ...
def __contains__(self, date: date | str) -> bool: ...
def __eq__(self, other: object) -> bool: ...

def system_identifier() -> str: ...
Expand Down