summaryrefslogtreecommitdiff
path: root/isort/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'isort/settings.py')
-rw-r--r--isort/settings.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/isort/settings.py b/isort/settings.py
index 04b488f1..1885eef3 100644
--- a/isort/settings.py
+++ b/isort/settings.py
@@ -6,11 +6,9 @@ Defines how the default settings for isort should be loaded
in ~/.isort.cfg or $XDG_CONFIG_HOME/isort.cfg if there are any)
"""
import configparser
-import enum
import fnmatch
import os
import posixpath
-import re
import sys
import warnings
from distutils.util import strtobool as _as_bool
@@ -23,12 +21,8 @@ from typing import (
FrozenSet,
Iterable,
List,
- Mapping,
- MutableMapping,
- Optional,
Set,
Tuple,
- Union,
)
from warnings import warn
@@ -37,7 +31,6 @@ from ._future import dataclass, field
from .exceptions import ProfileDoesNotExist
from .profiles import profiles
from .sections import DEFAULT as SECTION_DEFAULTS
-from .utils import difference, union
from .wrap_modes import WrapModes
from .wrap_modes import from_string as wrap_mode_from_string