fix: check for non-empty loop_type in CheckDeprecatedBareVars (#591)

This commit is contained in:
Robert Kaussow 2023-04-26 09:41:50 +02:00 committed by GitHub
parent 9a9bf37702
commit ce47455b0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -42,6 +42,9 @@ class CheckDeprecatedBareVars(StandardBase):
for task in tasks:
loop_type = next((key for key in task if key.startswith("with_")), None)
if not loop_type:
continue
if loop_type in [
"with_items",
"with_nested",