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
IPvAnyAddress
Describe the bug PyCharm creates a warning but the model works fine. I do not know how to specify the field values without creating a warning.
To Reproduce
from ipaddress import IPv4Address from pydantic import BaseModel, IPvAnyAddress class M(BaseModel): ip: IPvAnyAddress def test_(): assert str(M(ip=IPv4Address("10.0.0.1")).ip) == "10.0.0.1" assert str(M(ip=IPvAnyAddress("10.0.0.1")).ip) == "10.0.0.1" assert str(M(ip="10.0.0.1").ip) == "10.0.0.1"
Expected behavior PyCharm accepts values which are valid
Screenshots
Environments (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
PyCharm creates a warning but the model works fine. I do not know how to specify the field values without creating a warning.
To Reproduce
Expected behavior
PyCharm accepts values which are valid
Screenshots
Environments (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: