summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2019-03-05 22:52:18 -0800
committerTimothy Crosley <timothy.crosley@gmail.com>2019-03-05 22:52:18 -0800
commit175b7f57442ca5674d3dde010c2300880a3ba0d2 (patch)
tree79058807cb96b16b80240aeba9986ef1278dda7f
parentc7422c7a86cb01e88e6b040d999c9d689a9d1d49 (diff)
downloadisort-feature/fix-issue-873.tar.gz
Remove accidentally checked in codefeature/fix-issue-873
-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