diff mbox series

support/scripts/pkg-stats: get_config_packages(): use dict.values()

Message ID 20210201122056.6732-1-peter@korsgaard.com
State Accepted
Headers show
Series support/scripts/pkg-stats: get_config_packages(): use dict.values() | expand

Commit Message

Peter Korsgaard Feb. 1, 2021, 12:20 p.m. UTC
There is no need to get both the key and the value out of the dict if the
key is not used, so use dict.values() instead.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/scripts/pkg-stats | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Peter Korsgaard Feb. 2, 2021, 3:34 p.m. UTC | #1
>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

 > There is no need to get both the key and the value out of the dict if the
 > key is not used, so use dict.values() instead.

 > Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Committed, thanks.
diff mbox series

Patch

diff --git a/support/scripts/pkg-stats b/support/scripts/pkg-stats
index f58afc02ae..ac490a8d8f 100755
--- a/support/scripts/pkg-stats
+++ b/support/scripts/pkg-stats
@@ -358,7 +358,7 @@  def get_pkglist(npackages, package_list):
 def get_config_packages():
     cmd = ["make", "--no-print-directory", "show-info"]
     js = json.loads(subprocess.check_output(cmd))
-    return set([v["name"] for _, v in js.items()])
+    return set([v["name"] for v in js.values()])
 
 
 def package_init_make_info():