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
#127 added the py.typed file to the package to make this a PEP 561 compliant package. This triggers mypy to look into this package and search for type annotations.
The problem is that the entire package was not update to have type hints, so a user that happens to use other methods other than were changed in #127 now gets mypy errors.
#127 added the
py.typed
file to the package to make this a PEP 561 compliant package. This triggersmypy
to look into this package and search for type annotations.The problem is that the entire package was not update to have type hints, so a user that happens to use other methods other than were changed in #127 now gets
mypy
errors.Consider:
Because this method was not annotated:
drf-writable-nested/drf_writable_nested/mixins.py
Lines 229 to 230 in c6c47e4
The text was updated successfully, but these errors were encountered: