This commit is contained in:
Norbert
2024-11-18 08:59:34 +01:00
parent 47707d4302
commit d6e9cb72ed
1278 changed files with 200343 additions and 0 deletions

12
env/bin/chardetect vendored Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
'''exec' "/Users/norbert/Desktop/ESG LATEX/env/bin/python3" "$0" "$@"
' '''
# -*- 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())