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
collections_extended/bijection.py:38: error: Invalid index type "str" for "bijection[K, V]"; expected type "K"
Keyword args to bijection.__init__ are always of type str and this may conflict with the declared type. How to handle? Could we raise a mypy error if kwargs are used and K is not str or a subtype?
The text was updated successfully, but these errors were encountered:
Keyword args to
bijection.__init__
are always of typestr
and this may conflict with the declared type. How to handle? Could we raise a mypy error if kwargs are used andK
is notstr
or a subtype?The text was updated successfully, but these errors were encountered: