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
When a dataclass contains an InitVar field, pydantic will try to validate it and does not pass the InitVar to post_init.
Using InitVar will raise the following error:
RuntimeError: no validator found for <class 'dataclasses.InitVar'>
And when arbitrary_types_allowed is set the following exception is raised:
TypeError: _pydantic_post_init() takes 1 positional argument but 2 were given
I have a pull request.
For bugs/questions:
The text was updated successfully, but these errors were encountered:
RootModel (pydantic#592)
b863be7
No branches or pull requests
Bug
When a dataclass contains an InitVar field, pydantic will try to validate it and does not pass the InitVar to post_init.
Using InitVar will raise the following error:
And when arbitrary_types_allowed is set the following exception is raised:
I have a pull request.
For bugs/questions:
The text was updated successfully, but these errors were encountered: