8000 Add missing third party modules by hauntsaninja · Pull Request #8321 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Add missing third party modules #8321

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 17 commits into from
Jul 19, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
  • Loading branch information
hauntsaninja and AlexWaygood authored Jul 19, 2022
commit dc8cf7185133f07bccc8f8522b745b449b94c5af
2 changes: 1 addition & 1 deletion stubs/DateTimeRange/datetimerange/__version__.pyi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from _typeshed import Incomplete

__maintainer__: Incomplete
__maintainer__: str
__email__: str
__license__: str
8 changes: 4 additions & 4 deletions stubs/pytz/pytz/reference.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class USTimeZone(tzinfo):
def utcoffset(self, dt): ...
def dst(self, dt): ...

Eastern: Incomplete
Central: Incomplete
Mountain: Incomplete
Pacific: Incomplete
Eastern: USTimeZone
Central: USTimeZone
Mountain: USTimeZone
Pacific: USTimeZone
8 changes: 3 additions & 5 deletions stubs/tzlocal/tzlocal/windows_tz.pyi
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from _typeshed import Incomplete

win_tz: Incomplete
tz_names: Incomplete
tz_win: Incomplete
win_tz: dict[str, str]
tz_names: dict[str, str]
tz_win: dict[str, str]
0