├── .github └── workflows │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── LICENSE ├── README.md ├── reorder_python_imports.py ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── testing ├── generate-deprecated ├── generate-future-info ├── generate-mock-info ├── generate-python-future-info ├── generate-six-info ├── generate-tokenize ├── generate-typing-pep585-rewrites └── generate-typing-rewrite-info ├── tests ├── __init__.py └── reorder_python_imports_test.py └── tox.ini /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | *.py[co] 3 | .coverage 4 | .tox 5 | dist 6 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/README.md -------------------------------------------------------------------------------- /reorder_python_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/reorder_python_imports.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | covdefaults 2 | coverage 3 | pytest 4 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/setup.py -------------------------------------------------------------------------------- /testing/generate-deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/testing/generate-deprecated -------------------------------------------------------------------------------- /testing/generate-future-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/testing/generate-future-info -------------------------------------------------------------------------------- /testing/generate-mock-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/testing/generate-mock-info -------------------------------------------------------------------------------- /testing/generate-python-future-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/testing/generate-python-future-info -------------------------------------------------------------------------------- /testing/generate-six-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/testing/generate-six-info -------------------------------------------------------------------------------- /testing/generate-tokenize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/testing/generate-tokenize -------------------------------------------------------------------------------- /testing/generate-typing-pep585-rewrites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/testing/generate-typing-pep585-rewrites -------------------------------------------------------------------------------- /testing/generate-typing-rewrite-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/testing/generate-typing-rewrite-info -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/reorder_python_imports_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/tests/reorder_python_imports_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile/reorder-python-imports/HEAD/tox.ini --------------------------------------------------------------------------------