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
Seems like this is still using the old implementation of Config for pydantic. For example:
Config
class RefreshToken(RefreshTokenUpdate): class Config: from_attributes = True
Should now be re-written as:
from pydantic import ConfigDict class RefreshToken(RefreshTokenUpdate): model_config = ConfigDict(from_attributes=True)
I believe you should be able to use Bump Pydantic to get a lot of these things fixed with minimal work
The text was updated successfully, but these errors were encountered:
Thanks for highlighting this issue @sammaphey.
We've gone ahead and captured this in a JIRA ticket, where you can track its' progress.
Feel free to open a PR related to the issue and we will happily review it any time.
Sorry, something went wrong.
Marking issue as "fixed" with introduction of PR: #29
No branches or pull requests
Seems like this is still using the old implementation of
Config
for pydantic. For example:Should now be re-written as:
I believe you should be able to use Bump Pydantic to get a lot of these things fixed with minimal work
The text was updated successfully, but these errors were encountered: