8000 Update typing_extensions imports in third-party stubs by srittau · Pull Request #11245 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content
8000

Update typing_extensions imports in third-party stubs #11245

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 5 commits into from
Jan 5, 2024
Merged
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
Fix Never import
  • Loading branch information
srittau committed Jan 5, 2024
commit 6f20d1a4c88dadb97e05148f78740c55887c93f3
3 changes: 2 additions & 1 deletion stubs/pywin32/win32/lib/pywintypes.pyi
Original file line number Diff line nu 5E0E mber Diff line change
Expand Up @@ -2,7 +2,8 @@
# "KeyError: 'pywintypes'"
from _typeshed import Incomplete
from datetime import datetime
from typing import Literal, Never, NoReturn
from typing import Literal, NoReturn
from typing_extensions import Never

import _win32typing

Expand Down
0