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
Is runtype somehow messing with typing, typing_extensions or pydantic?
A thing that looks relevant in my logs is:
/home/admin/.pyenv/versions/3.8.10/lib/python3.8/typing.py:1264: in get_type_hints value = _eval_type(value, globalns, localns) /home/admin/.pyenv/versions/3.8.10/lib/python3.8/typing.py:270: in _eval_type return t._evaluate(globalns, localns) E TypeError: _evaluate() missing 1 required positional argument: '_'
Even just importing runtype.validation triggers that problem, so I'd expect it does some monkey patching on import.
runtype.validation
The text was updated successfully, but these errors were encountered:
Bugfix: No longer changing ForwardRef._evaluate, that interfered with…
54db83d
… other libraries (Issue #14)
Thanks for letting me know!
I merged a fix to the master branch. Let me know if that helped.
master
Sorry, something went wrong.
Yes, that resolved the issue, thanks!
No branches or pull requests
Is runtype somehow messing with typing, typing_extensions or pydantic?
A thing that looks relevant in my logs is:
Even just importing
runtype.validation
triggers that problem, so I'd expect it does some monkey patching on import.The text was updated successfully, but these errors were encountered: