Don't trace if we check a non python module for just docs

This commit is contained in:
Matt Martz 2015-06-30 14:17:26 -05:00 committed by John Barker
parent d488bd57cc
commit 48ce4b7d70

View file

@ -120,10 +120,13 @@ class ModuleValidator(Validator):
return False
def _just_docs(self):
for child in self.ast.body:
if not isinstance(child, ast.Assign):
return False
return True
try:
for child in self.ast.body:
if not isinstance(child, ast.Assign):
return False
return True
except AttributeError:
return False
def _is_bottom_import_blacklisted(self):
return self.object_name in self.BOTTOM_IMPORTS_BLACKLIST