Skip to content

Commit d786dbd

Browse files
committed
fix import
1 parent 0d378f2 commit d786dbd

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

livekit-rtc/livekit/rtc/frame_processor.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
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
2+
from typing import Generic, TypeVar, Union
3+
from .audio_frame import AudioFrame
4+
from .video_frame import VideoFrame
75

86

97
T = TypeVar("T", bound=Union[AudioFrame, VideoFrame])

0 commit comments

Comments
 (0)