style: deleting unnecessary file and stdoout

This commit is contained in:
TheNoxium
2025-05-15 15:15:26 +05:00
parent 3554d43d15
commit eb63ebb10f
6 changed files with 4 additions and 37 deletions

View File

@@ -26,8 +26,6 @@ async def get_user(connection: AsyncConnection, login: str) -> Optional[User]:
user_db_cursor = await connection.execute(query)
user_db = user_db_cursor.one_or_none()
print("Raw user data from DB:", user_db)
if not user_db:
return None, None