-
-
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
False positive with attrs converter #8625
Comments
Yeah, that does look wrong. Not sure how easy fixing it would be. |
This also happens in case of a generic function. from attr import attrs, attrib
from typing import FrozenSet, Text, Iterable, TypeVar
_T = TypeVar('_T')
def converter(ar: Iterable[_T]) -> FrozenSet[_T]:
return frozenset(ar)
@attrs
class Test(object):
values = attrib(type=FrozenSet[Text], converter=converter)
Test(values={'a'}) results in an error:
I looked into how this could be fixed and here is what I found out for reference: Line 78 in 41927cf
At this point the type of the Line 98 in 41927cf
Line 79 in 41927cf
Which the attrs plugin has already completed. |
I opened a PR which fixes this issue for builtin types, including It doesn't fix the issue for generic functions, since their type still contains |
Just ran into this bug. Thank you so much for submitting a PR! |
Looks like mypy can't infer generic parameter properly when used in attrs converter.
Actual: reporting error
Expected: no errors.
mypy version 0.770, python 3.5.2, no flags are used.
Latest master has basically the same error message except generic param has a different name:
Possibly related: #5313
The text was updated successfully, but these errors were encountered: