-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
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
Update fastapi-users v12 #329
Update fastapi-users v12 #329
Conversation
Type check fails with:
It's pointing to this line where class User(SQLAlchemyBaseUserTableUUID, Base):
anonymous = Column(Boolean, default=True, nullable=False)
email = Column(String(length=32), nullable=False, unique=True)
... It seems to be an SQLAlchemy issue, but maybe @frankie567 has an idea? |
Why do you need to redefine the |
a87000a
to
8c3b189
Compare
Ah right, it was not necessary. Thanks! |
…ts with lazy loading
ea53436
to
9fced2b
Compare
@frankie567 I had weird errors when accessing User.oauth_accounts, defined here:
It was caused by a MissingGreenlet. After making the recommended changes in 9fced2b it works fine. |
Well, TIL about However, if you have |
Mmm then I'm not sure what was going on, I might have to revisit this issue in the future. |
No description provided.