mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
12 lines
267 B
Text
12 lines
267 B
Text
|
#!/Users/manuelfritsch/Documents/git/cbpi4/venv3/bin/python3
|
||
|
|
||
|
# -*- coding: utf-8 -*-
|
||
|
import re
|
||
|
import sys
|
||
|
|
||
|
from chardet.cli.chardetect import main
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||
|
sys.exit(main())
|