Skip to content

Commit 7a11744

Browse files
committed
lint
1 parent 9acf522 commit 7a11744

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

examples/selective_subscription/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from contextlib import asynccontextmanager
22

33
import uvicorn
4+
45
from selective_subscription.app import app, room_service
56
from selective_subscription.config import HOST, PORT
67
from selective_subscription.notification_handler import NotificationHandler

examples/selective_subscription/selective_subscription/notification_handler.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
from .config import FISHJAM_ID, FISHJAM_TOKEN
2-
from .room_service import RoomService
31
from fishjam._ws_notifier import FishjamNotifier
42
from fishjam.events import (
5-
ServerMessagePeerType,
63
ServerMessagePeerConnected,
74
ServerMessagePeerDisconnected,
5+
ServerMessagePeerType,
86
ServerMessageTrackAdded,
97
ServerMessageTrackRemoved,
108
)
119
from fishjam.events.allowed_notifications import AllowedNotification
1210

11+
from .config import FISHJAM_ID, FISHJAM_TOKEN
12+
from .room_service import RoomService
13+
1314

1415
class NotificationHandler:
1516
def __init__(self, room_service: RoomService):

fishjam/api/_fishjam_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
RoomDetailsResponse,
4242
RoomsListingResponse,
4343
StreamerToken,
44-
ViewerToken,
4544
SubscribeTracksBody,
45+
ViewerToken,
4646
)
4747
from fishjam._openapi_client.types import UNSET
4848
from fishjam.agent import Agent

0 commit comments

Comments
 (0)