Skip to content

Commit 59d65a8

Browse files
feat: fix typing for room_id (#559)
1 parent e754b73 commit 59d65a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/app/routes/ws/reverse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ async def room_ws(
7474
ws: WebSocket,
7575
s3_client: S3Dep,
7676
redis_client: RedisDep,
77-
room_id: Annotated[str, Query()],
77+
room_id: str,
7878
host_token: Annotated[str | None, Query()] = None,
7979
):
8080
room = await RoomState.get(room_id, strip_keys=False)

0 commit comments

Comments
 (0)