Files
dot/local/bin/tabulate
T
2026-07-12 08:16:17 +03:30

9 lines
235 B
Python
Executable File

#!/usr/lib/python-exec/python3.13/python
# -*- coding: utf-8 -*-
import re
import sys
if __name__ == '__main__':
from tabulate import _main
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(_main())