summaryrefslogtreecommitdiff
path: root/isort/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'isort/settings.py')
-rw-r--r--isort/settings.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/isort/settings.py b/isort/settings.py
index 30d680bd..d6dba5e2 100644
--- a/isort/settings.py
+++ b/isort/settings.py
@@ -328,11 +328,6 @@ def should_skip(filename, config, path=''):
return True
for skip_path in config['skip']:
- for specified_path in specified_paths:
- normalized_specified_path = specified_path.replace('\\', '/')
- if normalized_path.startswith(normalized_specified_path):
- normalized_path_skip = normalized_specified_path
-
if posixpath.abspath(normalized_path) == posixpath.abspath(skip_path.replace('\\', '/')):
return True