Fix: change values to items as keys and values are all used

Change-Id: Iaecb5995f2525aa7acc17b769646c2b878a3c58b
This commit is contained in:
songwenping 2022-04-19 11:13:55 +08:00
parent 0afd087cba
commit fe0e0a679d
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ def main(opts):
with open(ALLOW_LIST_FILE) as stream:
loaded = yaml.safe_load(stream)
if loaded:
for (name, l) in loaded.values():
for (name, l) in loaded.items():
for w in l:
assert 'module' in w, 'no module in %s' % name
assert 'message' in w, 'no message in %s' % name