summaryrefslogtreecommitdiff
path: root/isort/finders.py
diff options
context:
space:
mode:
Diffstat (limited to 'isort/finders.py')
-rw-r--r--isort/finders.py16
1 files changed, 2 insertions, 14 deletions
diff --git a/isort/finders.py b/isort/finders.py
index 5a7c74a7..259ddbb4 100644
--- a/isort/finders.py
+++ b/isort/finders.py
@@ -10,22 +10,10 @@ from abc import ABCMeta, abstractmethod
from fnmatch import fnmatch
from functools import lru_cache
from glob import glob
-from typing import (
- Any,
- Dict,
- Iterable,
- Iterator,
- List,
- Mapping,
- Optional,
- Pattern,
- Sequence,
- Tuple,
- Type,
-)
+from typing import Dict, Iterable, Iterator, List, Optional, Pattern, Sequence, Tuple, Type
from . import sections
-from .settings import DEFAULT_CONFIG, Config
+from .settings import Config
from .utils import chdir, exists_case_sensitive
try: