ai-station/.venv/bin/filetype

9 lines
243 B
Plaintext
Raw Normal View History

2025-12-25 14:54:33 +00:00
#!/home/giuseppe/ai-station/.venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from filetype.__main__ import main
2025-12-25 14:54:33 +00:00
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())