python-by-example-150-chall.../venv/bin/isort
2019-08-04 15:26:35 +03:00

11 lines
257 B
Python
Executable File

#!/home/abd/PycharmProjects/paython-by-learn/venv/bin/python3.6
# -*- coding: utf-8 -*-
import re
import sys
from isort.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())