We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d378f2 commit d786dbdCopy full SHA for d786dbd
1 file changed
livekit-rtc/livekit/rtc/frame_processor.py
@@ -1,9 +1,7 @@
1
from abc import ABC, abstractmethod
2
-from typing import TYPE_CHECKING, Generic, TypeVar, Union
3
-
4
-if TYPE_CHECKING:
5
- from .audio_frame import AudioFrame
6
- from .video_frame import VideoFrame
+from typing import Generic, TypeVar, Union
+from .audio_frame import AudioFrame
+from .video_frame import VideoFrame
7
8
9
T = TypeVar("T", bound=Union[AudioFrame, VideoFrame])
0 commit comments