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
fix some more ci
  • Loading branch information
hauntsaninja committed Jul 17, 2022
commit 2d0f9c960d5d38f9eb3eaf40268cf811a7a36cd7
5 changes: 5 additions & 0 deletions pyrightconfig.stricter.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"stdlib/xml/sax",
"stubs/aiofiles/aiofiles/tempfile/temptypes.pyi",
"stubs/aiofiles/aiofiles/threadpool/utils.pyi",
"stubs/annoy/annoy/annoylib.pyi",
"stubs/aws-xray-sdk",
"stubs/babel",
"stubs/backports.ssl_match_hostname",
Expand Down Expand Up @@ -56,6 +57,9 @@
"stubs/paramiko",
"stubs/prettytable",
"stubs/protobuf",
"stubs/pytz/pytz/lazy.pyi",
"stubs/pytz/pytz/reference.pyi",
"stubs/pytz/pytz/tzfile.pyi",
"stubs/google-cloud-ndb",
"stubs/passlib",
"stubs/pep8-naming",
Expand All @@ -78,6 +82,7 @@
"stubs/SQLAlchemy",
"stubs/stripe",
"stubs/tqdm",
"stubs/tzlocal/tzlocal/utils.pyi",
"stubs/ttkthemes",
"stubs/urllib3",
"stubs/vobject"
Expand Down
4 changes: 3 additions & 1 deletion stubs/click-spinner/click_spinner/_version.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import Any

version_json: str

def get_versions(): ...
def get_versions() -> dict[str, Any]: ...
4 changes: 3 additions & 1 deletion stubs/stdlib-list/stdlib_list/_version.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import Any

version_json: str

def get_versions(): ...
def get_versions() -> dict[str, Any]: ...
0