Move annassign and starexprs.

This commit is contained in:
Dave Halter
2017-08-18 18:15:24 +02:00
parent a53477321b
commit 904f293830
3 changed files with 72 additions and 57 deletions

View File

@@ -692,7 +692,8 @@ class PEP8Normalizer(ErrorFinder):
return
if search_ancestor(node, 'error_node') is not None:
return
super(PEP8Normalizer, self).add_issue(node, code, message)
# Skip ErrorFinder here, because it has custom behavior.
super(ErrorFinder, self).add_issue(node, code, message)
class PEP8NormalizerConfig(ErrorFinderConfig):