Skip to content

Commit feb839e

Browse files
committed
fix: 修复导入问题
1 parent c0ffff8 commit feb839e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/SimpleCutMainFrame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from pymediainfo import MediaInfo
1616

17-
from src.model import VideoSequenceModel, VideoModel
17+
from model import VideoSequenceModel, VideoModel
1818

1919
VERSION = "0.3.5"
2020

src/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ def swap_item(self, no1: int, no2: int):
7676
self.video_list[no1], self.video_list[no2] = self.video_list[no2], self.video_list[no1]
7777

7878
def clear_all(self):
79-
self.video_list = []
79+
self.video_list = []

0 commit comments

Comments
 (0)