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
Currently, the metaclass mixins provided by flask-sqlalchemy do not accept additional keyword arguments. Due to that, it breaks compatibility to the __init_subclass_ hook.
The bug was present in SQLAlchemy, and was fixed in #5357, refer to documentation about the canonical inclusion of kwargs.
Currently, the metaclass mixins provided by flask-sqlalchemy do not accept additional keyword arguments. Due to that, it breaks compatibility to the
__init_subclass_
hook.The bug was present in SQLAlchemy, and was fixed in #5357, refer to documentation about the canonical inclusion of
kwargs
.The execution of the snippet will result in:
The instantiation of the class should not fail, and
default
should be propagated to the__init_subclass__
hook.Environment:
The text was updated successfully, but these errors were encountered: