Skip to content

Commit c6f7341

Browse files
committed
[scenedetect] Update module imports
1 parent 33fb535 commit c6f7341

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scenedetect/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# Commonly used classes/functions exported under the `scenedetect` namespace for brevity.
3333
# Note that order of importants is important!
3434
from scenedetect.platform import init_logger # noqa: I001
35-
from scenedetect.frame_timecode import FrameTimecode
35+
from scenedetect.common import FrameTimecode, SceneList, CutList, CropRegion, TimecodePair
3636
from scenedetect.video_stream import VideoStream, VideoOpenFailure
3737
from scenedetect.video_splitter import split_video_ffmpeg, split_video_mkvmerge
3838
from scenedetect.detector import SceneDetector
@@ -51,7 +51,7 @@
5151
VideoCaptureAdapter,
5252
)
5353
from scenedetect.stats_manager import StatsManager, StatsFileCorrupt
54-
from scenedetect.scene_manager import SceneManager, save_images, SceneList, CutList, Interpolation
54+
from scenedetect.scene_manager import SceneManager, save_images, Interpolation
5555

5656
# Used for module identification and when printing version & about info
5757
# (e.g. calling `scenedetect version` or `scenedetect about`).

0 commit comments

Comments
 (0)