summaryrefslogtreecommitdiff
path: root/isort/__main__.py
blob: 91cc154dcb62bae3eed88014d0e0d03028af4c6e (plain)
1
2
3
4
5
6
7
8
9
from __future__ import absolute_import

from isort.pie_slice import apply_changes_to_python_environment

apply_changes_to_python_environment()

from isort.main import main  # noqa: E402 isort:skip

main()