1 parent 227a8f8 commit f6af046Copy full SHA for f6af046
1 file changed
tests/test_editor.py
@@ -81,7 +81,7 @@ def test_editor():
81
82
def progress_callback(current, total):
83
percent = (current / total) * 100
84
- print(f"\n📊 Progress: {current}/{total} ({percent:.0f}%)")
+ print(f"\nProgress: {current}/{total} ({percent:.0f}%)")
85
86
results = batch_export(
87
video_path=video_path,
@@ -134,7 +134,7 @@ def progress_callback(current, total):
134
# Export SRT
135
srt_path = export_result.output_path.with_suffix('.srt')
136
export_srt(subtitle_segments, srt_path)
137
- print(f" ✅ {srt_path.name}")
+ print(f" {srt_path.name}")
138
else:
139
print(" [WARNING] transcript.json not found, skipping subtitles")
140
0 commit comments