You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, I want to express my gratitude for developing this incredible tool. It has greatly assisted me in adopting Pydantic v2, and I have achieved exceptional results in my projects. Thank you for your valuable contribution! 🚀
I have encountered an issue where the bump-pydantic tool is exhibiting unexpected behavior by replacing the inner Config in non-Pydantic objects.
I guess bump-pydantic only have to update BaseModels objects. To ensure that it would be beneficial to introduce an additional check in the replace_config.py file.
The text was updated successfully, but these errors were encountered:
First of all, I want to express my gratitude for developing this incredible tool. It has greatly assisted me in adopting Pydantic v2, and I have achieved exceptional results in my projects. Thank you for your valuable contribution! 🚀
I have encountered an issue where the bump-pydantic tool is exhibiting unexpected behavior by replacing the inner Config in non-Pydantic objects.
alice-biometrics/petisco-fastapi-example#11
To reproduce this behaviour you can use the following code (
pip install petisco
):The
Controller
inherits from a metaclassclass Controller(metaclass=MetaController)
and this metaclass gets information from configI guess
bump-pydantic
only have to update BaseModels objects. To ensure that it would be beneficial to introduce an additional check in the replace_config.py file.The text was updated successfully, but these errors were encountered: