ruff check --fix

This commit is contained in:
2025-07-23 03:54:36 +03:00
parent 5c6c697987
commit 20bdd4fafa
7 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ from web.misc import check_user, is_portrait
def _check_room(room_uid: str):
return not globals.ROOMS_DATABASE.by_uid.get(room_uid) is None
return globals.ROOMS_DATABASE.by_uid.get(room_uid) is not None
async def _join_room(room_uid: str, user_uid: str):