Skip to content
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

ListAttribute(of=UnicodeAttribute) is not compatible with List[str] #1246

Open
james10424 opened this issue Jun 6, 2024 · 1 comment
Open

Comments

@james10424
Copy link

They should be equivalent, but mypy/pylance did not agree with this.

To reproduce:

  • create a model with thing = ListAttribute(of=UnicodeAttribute)
  • write this line the_thing: List[str] = model.thing

This seems to be an issue with ListAttribute not properly extracting types, to add to this, consider the following:

the_first_thing: str = model.thing[0]
This will cause "UnicodeAttribute" is incompatible with "str"

However, if the attribute is only UnicodeAttribute, then it will be recognized as str when assigned to a variable.

@james10424
Copy link
Author

james10424 commented Jun 6, 2024

Similarly, when trying to set the array, the same type error is raised.

Argument of type "list[str]" cannot be assigned to parameter "value" of type "List[UnicodeAttribute] | Attribute[List[UnicodeAttribute]]......

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant