qapi/gen: use dict.items() to iterate over _modules
commit2adb988ed4ca31813d237c475a6a327ef16c5432
authorJohn Snow <jsnow@redhat.com>
Thu, 30 Sep 2021 20:57:05 +0000 (30 16:57 -0400)
committerMarkus Armbruster <armbru@redhat.com>
Sat, 2 Oct 2021 05:33:41 +0000 (2 07:33 +0200)
tree813574d576b0fac9c62b77c3553a55d95659a139
parent1c00917409c9604cfc587045ba37395a48337dff
qapi/gen: use dict.items() to iterate over _modules

New pylint warning. I could silence it, but this is the only occurrence
in the entire tree, including everything in iotests/ and python/. Easier
to just change this one instance.

(The warning is emitted in cases where you are fetching the values
anyway, so you may as well just take advantage of the iterator to avoid
redundant lookups.)

Signed-off-by: John Snow <jsnow@redhat.com>
Message-Id: <20210930205716.1148693-3-jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
scripts/qapi/gen.py