fix: replace bare except with except Exception (#22473)

Replace bare except clauses with except Exception to follow Python best practices and avoid catching unexpected system exceptions like KeyboardInterrupt and SystemExit.
This commit is contained in:
Ethan T.
2026-03-15 17:48:23 -05:00
committed by GitHub
parent bcd313c363
commit a229f9ea42
9 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -661,7 +661,7 @@ async def yjs_document_update(sid, data):
try:
await stop_item_tasks(REDIS, document_id)
except:
except Exception:
pass
user_id = data.get("user_id", sid)