python-by-example-150-chall.../venv/bin/isort

11 lines
257 B
Plaintext
Raw Permalink Normal View History

2019-08-04 20:26:35 +08:00
#!/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())