Skip to content

Commit

Permalink
πŸ› Use CRUDUser instead of CRUDBase for Users (#73)
Browse files Browse the repository at this point in the history
Co-authored-by: Marcelo Trylesinski <marcelotryle@gmail.com>
  • Loading branch information
SarloAkrobata and Kludex committed May 24, 2023
1 parent 841690e commit 262bd1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion users/app/crud/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from app.schemas.user import UserInDB, UserUpdateDB

CRUDUser = CRUDBase[User, UserInDB, UserUpdateDB]
crud_user = CRUDBase(User)
crud_user = CRUDUser(User)

0 comments on commit 262bd1b

Please sign in to comment.