Lots of stuff

This commit is contained in:
2025-06-30 17:25:00 -07:00
parent ce9ce4e872
commit 8136bf91a0
5 changed files with 29 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from deepl.__main__ import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())