repo typing fix

This commit is contained in:
IluaAir
2025-08-11 10:24:12 +03:00
parent 860962bcc3
commit fdc688cf5e
3 changed files with 10 additions and 10 deletions

View File

@@ -5,7 +5,7 @@ from src.repository.base import BaseRepo
class UsersRepo(BaseRepo):
model = UsersORM
model: type[UsersORM] = UsersORM
async def update_one(self, id: int, data: dict) -> UsersORM:
stmt = (