mirror of
https://github.com/wahyd4/links.git
synced 2026-08-09 05:06:16 +10:00
9 lines
279 B
Python
Executable File
9 lines
279 B
Python
Executable File
#!/Users/junv/code/links/3.12/bin/python3.12
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from argcomplete.scripts.activate_global_python_argcomplete import main
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(main())
|