Skip to content

Commit

Permalink
remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
normaps committed Nov 8, 2023
1 parent 79fc85e commit a788325
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions backend/hub/record_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,11 @@
from __future__ import annotations
import logging
import time

from aiortc.contrib.media import MediaRecorder, MediaBlackhole
from pyee.asyncio import AsyncIOEventEmitter

from hub.track_handler import TrackHandler


class RecordHandler():
class RecordHandler:
"""Handles audio and video recording of the stream."""

_logger: logging.Logger
Expand Down Expand Up @@ -44,6 +41,7 @@ def __init__(
self._track = track
self._record = record
self._record_to = record_to
self._start_time = 0

if self._track.kind == "audio":
track_format = "mp3"
Expand Down

0 comments on commit a788325

Please sign in to comment.