From e33e8452383d66de68ec399e00eb62feb92cfd4e Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Tue, 11 Jul 2017 21:56:10 +0200 Subject: [PATCH] public.utils: remove unused variable arch --- public/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/utils.py b/public/utils.py index 11091883..248bd7d8 100644 --- a/public/utils.py +++ b/public/utils.py @@ -48,7 +48,7 @@ def package_links(self): by_arch = defaultdict(list) for package in self.others: by_arch[package.arch].append(package) - for arch, packages in by_arch.items(): + for _, packages in by_arch.items(): if len(packages) == 1: yield packages[0] else: