mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-14 12:51:04 +00:00
Fix yamllinter handling of tuple assignment.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user