-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Fix over eager types-google-cloud-ndb suggestion #15347
Merged
+33
−47
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
3facd78
Fix over eager types-google-cloud-ndb suggestion
hauntsaninja 47b820c
remove comment
hauntsaninja 07cfe7b
Merge remote-tracking branch 'origin/master' into gcndb
hauntsaninja 927333d
.
hauntsaninja ef17fd2
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,15 +9,13 @@ def approved_stub_package_exists(prefix: str) -> bool: | |
return is_legacy_bundled_package(prefix) or prefix in non_bundled_packages | ||
|
||
|
||
def stub_package_name(prefix: str) -> str: | ||
def stub_distribution_name(prefix: str) -> str: | ||
return legacy_bundled_packages.get(prefix) or non_bundled_packages[prefix] | ||
|
||
|
||
# Stubs for these third-party packages used to be shipped with mypy. | ||
# | ||
# Map package name to PyPI stub distribution name. | ||
# | ||
# Package name can have one or two components ('a' or 'a.b'). | ||
legacy_bundled_packages = { | ||
"aiofiles": "types-aiofiles", | ||
"bleach": "types-bleach", | ||
|
@@ -116,7 +114,7 @@ def stub_package_name(prefix: str) -> str: | |
"flask_sqlalchemy": "types-Flask-SQLAlchemy", | ||
"fpdf": "types-fpdf2", | ||
"gdb": "types-gdb", | ||
"google.cloud": "types-google-cloud-ndb", | ||
"google.cloud.ndb": "types-google-cloud-ndb", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don't forget to update the comment above re: a.b. |
||
"hdbcli": "types-hdbcli", | ||
"html5lib": "types-html5lib", | ||
"httplib2": "types-httplib2", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I considered if the iteration could be wrapped in a func but can't think of a name that's clearer than the literal code