Skip to content

Commit

Permalink
fix flake8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmithv11 committed Jun 28, 2023
1 parent 3eb7b2c commit 96a02e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def scan_entity_conf(self, conf: dict[str, Any], entity_type: str) -> tuple[Chec
if key in current_dict:
if current_dict['type'] == 'array' and current_dict.get('maxItems') is None:
return CheckResult.FAILED, current_dict
for k, v in current_dict.items():
for _k, v in current_dict.items():
if isinstance(v, dict):
queue.append(v)
if isinstance(v, list):
Expand Down

0 comments on commit 96a02e7

Please sign in to comment.