-
-
Notifications
You must be signed in to change notification settings - Fork 398
Missing types in v1.16 #1322
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
Comments
Getting the same here
using pyright |
See #1343 |
I confirm that the type stub included in versions 1.16 and 1.17 is not usable ; mypy gives too many false positives. |
Mentioned in libgit2#1322 Explanation on how it works - https://github.com/microsoft/pyright/blob/main/docs/typed-libraries.md#library-interface Example failing snippet: ```python import pygit2 # 4:23 - error: "Repository" is not exported from module "pygit2" (reportPrivateImportUsage) def test(repo: pygit2.Repository): ... ```
Mentioned in libgit2#1322 Explanation on how it works - https://github.com/microsoft/pyright/blob/main/docs/typed-libraries.md#library-interface Example failing snippet: ```python import pygit2 def test(repo: pygit2.Repository): ... ```
Mentioned in libgit2#1322 Explanation on how it works - https://github.com/microsoft/pyright/blob/main/docs/typed-libraries.md#library-interface Example failing snippet: ```python import pygit2 def test(repo: pygit2.Repository): ... ```
Mentioned in libgit2#1322 Explanation on how it works - https://github.com/microsoft/pyright/blob/main/docs/typed-libraries.md#library-interface Example failing snippet: ```python import pygit2 def test(repo: pygit2.Repository): ... ```
The addition of #1310 made my CI fail with the following:
The text was updated successfully, but these errors were encountered: