mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
validate_yaml.py: fix for python3
RuntimeError: dictionary changed size during iteration
This commit is contained in:
parent
8e5aaff76b
commit
c869cb0ea5
@ -54,7 +54,7 @@ for yaml_file in yaml_files:
|
||||
if verbose: print("Validating {:}".format(yaml_file))
|
||||
document = load_yaml_file(yaml_file)
|
||||
# ignore top-level entries prefixed with __
|
||||
for key in document.keys():
|
||||
for key in list(document.keys()):
|
||||
if key.startswith('__'): del document[key]
|
||||
|
||||
if not validator.validate(document):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user