summaryrefslogtreecommitdiff
path: root/checkers/imports.py
diff options
context:
space:
mode:
Diffstat (limited to 'checkers/imports.py')
-rw-r--r--checkers/imports.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/checkers/imports.py b/checkers/imports.py
index 9ae3935..3242b75 100644
--- a/checkers/imports.py
+++ b/checkers/imports.py
@@ -48,7 +48,8 @@ def get_first_import(node, context, name, base, level):
break
elif isinstance(first, astroid.From):
if level == first.level and any(
- fullname == '%s.%s' % (first.modname, iname[0]) for iname in first.names):
+ fullname == '%s.%s' % (first.modname, iname[0])
+ for iname in first.names):
found = True
break
if found and not are_exclusive(first, node):
@@ -178,30 +179,29 @@ class ImportsChecker(BaseChecker):
'metavar' : '<modules>',
'help' : 'Deprecated modules which should not be used, \
separated by a comma'}
- ),
+ ),
('import-graph',
{'default' : '',
'type' : 'string',
'metavar' : '<file.dot>',
'help' : 'Create a graph of every (i.e. internal and \
external) dependencies in the given file (report RP0402 must not be disabled)'}
- ),
+ ),
('ext-import-graph',
{'default' : '',
'type' : 'string',
'metavar' : '<file.dot>',
'help' : 'Create a graph of external dependencies in the \
given file (report RP0402 must not be disabled)'}
- ),
+ ),
('int-import-graph',
{'default' : '',
'type' : 'string',
'metavar' : '<file.dot>',
'help' : 'Create a graph of internal dependencies in the \
given file (report RP0402 must not be disabled)'}
- ),
-
- )
+ ),
+ )
def __init__(self, linter=None):
BaseChecker.__init__(self, linter)
@@ -212,7 +212,7 @@ given file (report RP0402 must not be disabled)'}
self.report_external_dependencies),
('RP0402', 'Modules dependencies graph',
self.report_dependencies_graph),
- )
+ )
def open(self):
"""called before visiting project (i.e set of modules)"""
@@ -252,7 +252,7 @@ given file (report RP0402 must not be disabled)'}
if prev:
# consecutive future statements are possible
if not (isinstance(prev, astroid.From)
- and prev.modname == '__future__'):
+ and prev.modname == '__future__'):
self.add_message('misplaced-future', node=node)
return
for name, _ in node.names: