Commit c64e91f 1 parent 6fd101a commit c64e91f Copy full SHA for c64e91f
File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ license = "GPL-3.0-only"
39
39
name = " yuisub"
40
40
readme = " README.md"
41
41
repository = " https://github.com/TensoRaws/yuisub"
42
- version = " 1.2.0 "
42
+ version = " 1.2.1 "
43
43
44
44
# Requirements
45
45
[tool .poetry .dependencies ]
Original file line number Diff line number Diff line change 25
25
args = parser .parse_args ()
26
26
27
27
28
- async def main () -> None :
28
+ async def _main () -> None :
29
29
if args .AUDIO and args .SUB :
30
30
raise ValueError ("Please provide only one input file, either audio or subtitle file" )
31
31
@@ -55,5 +55,9 @@ async def main() -> None:
55
55
sub_bilingual .save (args .OUTPUT_BILINGUAL )
56
56
57
57
58
+ def main () -> None :
59
+ asyncio .run (_main ())
60
+
61
+
58
62
if __name__ == "__main__" :
59
- asyncio . run ( main () )
63
+ main ()
You can’t perform that action at this time.
0 commit comments