.gitignore added
[dotfiles/.git] / .local / bin / isort-identify-imports
diff --git a/.local/bin/isort-identify-imports b/.local/bin/isort-identify-imports
new file mode 100755 (executable)
index 0000000..a772abd
--- /dev/null
@@ -0,0 +1,8 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+import re
+import sys
+from isort.main import identify_imports_main
+if __name__ == '__main__':
+    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
+    sys.exit(identify_imports_main())