We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
__getitem__
__getitem__ is typed to return Any since we don't have a way to derive overloads based off the class properties.
Any
overload
Instead of __getitem__ users can use getattr if they really want to access properties dynamically.
getattr
The text was updated successfully, but these errors were encountered:
__setitem__
Fixed by #45. 0.13.0 has this change
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
__getitem__
is typed to returnAny
since we don't have a way to deriveoverload
s based off the class properties.Instead of
__getitem__
users can usegetattr
if they really want to access properties dynamically.The text was updated successfully, but these errors were encountered: