massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / pythonFiles / sortImports.py
1 # Copyright (c) Microsoft Corporation. All rights reserved.
2 # Licensed under the MIT License.
3
4 import os
5 import os.path
6 import sys
7
8 isort_path = os.path.join(os.path.dirname(__file__), "lib", "python")
9 sys.path.insert(0, isort_path)
10
11 import isort.main
12
13 isort.main.main()