Fix yamllinter handling of tuple assignment.
This commit is contained in:
parent
503f907b63
commit
0dade18f43
1 changed files with 3 additions and 0 deletions
|
@ -120,6 +120,9 @@ class YamlChecker(object):
|
|||
def check_assignment(statement, doc_types=None):
|
||||
"""Check the given statement for a documentation assignment."""
|
||||
for target in statement.targets:
|
||||
if isinstance(target, ast.Tuple):
|
||||
continue
|
||||
|
||||
if doc_types and target.id not in doc_types:
|
||||
continue
|
||||
|
||||
|
|
Loading…
Reference in a new issue