blob: ac40f3f44a033901ee8d2e8336a11c13143d4c98 (
plain)
1
2
3
4
5
6
7
|
#!/home/blackhao/uiuc-course-graph/.venv/bin/python
import sys
from charset_normalizer.cli import cli_detect
if __name__ == '__main__':
if sys.argv[0].endswith('.exe'):
sys.argv[0] = sys.argv[0][:-4]
sys.exit(cli_detect())
|