mirror of
https://github.com/jlengrand/checkoutCreate.git
synced 2026-03-10 08:11:18 +00:00
9 lines
307 B
Python
Executable File
9 lines
307 B
Python
Executable File
#!/Users/julienlengrand-lambert/Developer/adyen/checkoutCreate/venv/bin/python3.9
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from charset_normalizer.cli.normalizer import cli_detect
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(cli_detect())
|