You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per the "Static Checks" action, type checking via PyRight is currently failing:
build: asyncstdlib/contextlib.pyi#L77
Type annotation for "self" parameter of "init" method cannot contain class-scoped type variables (reportInvalidTypeVarUse)
What happened?
As per the "Static Checks" action, type checking via PyRight is currently failing:
This is due to a recent change in the typing spec which has been picked up by PyRight but not MyPy yet. MyPy may fix this in python/mypy#17239, but the status is unclear to me. TypeShed had the same problem (python/typeshed#11780) and has resorted to just
# pyright: ignore[reportInvalidTypeVarUse]
everything (python/typeshed#11810).There is only a single error in
asyncstdlib
, so ignoring the error for now may be viable.Minimal Reproducible Example
Request Assignment [Optional]
The text was updated successfully, but these errors were encountered: