Skip to content

Commit 8b4d5f2

Browse files
committed
Fix lint warnings
1 parent 873d432 commit 8b4d5f2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

examples/room_manager/routes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from dataclasses import asdict
2+
from typing import Literal, get_args
23

34
from flask import Flask, abort, jsonify, request
45

fishjam/api/_fishjam_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ class RoomOptions:
5555
"""Enforces video codec for each peer in the room"""
5656
webhook_url: str | None = None
5757
"""URL where Fishjam notifications will be sent"""
58-
room_type: Literal["conference", "audio_only", "livestream"] = "conference"
58+
room_type: Literal[
59+
"conference", "audio_only", "livestream", "full_feature", "broadcaster"
60+
] = "conference"
5961
"""The use-case of the room. If not provided, this defaults to conference."""
6062

6163

0 commit comments

Comments
 (0)