hello iam trying to get a currnet_user information in my views
and i include from users.models import *
then in my code return return current_user;
<
TL;DR
For example
from A.B.C import Model Afrom .B.C import Model A (This raises error, importing path should be consistent across all blueprints that imports the same model. So it should be from A.B.C import Model A)I haven't dig this issue to find out what is the cause, but I guess that SQLAlchemy manages Model with its imported namespace and raise error when different namespace is defined but the models are same.