This error is raised when i try to instantiate the InlineModel class. Extension version: 0.16.0 code ```python from flask_potion.contrib import alchemy @ItemRoute.GET('/collapsed_credit_usage_user', Schema=FieldSet({ 'user': alchemy.fields.InlineModel({ 'id': fields.Integer(description='id do usuario') }, model=model_user.User) }) ) def collapsed_credit_usage_user(self, invoice, user): pass ``` Can anyone explain why is this happening?
This error is raised when i try to instantiate the InlineModel class.
Extension version: 0.16.0
code
Can anyone explain why is this happening?