From 9ddd3c7b60ed105384d8c810ba0b9aa983f18947 Mon Sep 17 00:00:00 2001 From: Ivo De Decker Date: Thu, 30 Jan 2020 16:16:33 +0000 Subject: [PATCH] Suite codestyle fix --- britney2/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/britney2/__init__.py b/britney2/__init__.py index 5344344..10a2a5e 100644 --- a/britney2/__init__.py +++ b/britney2/__init__.py @@ -74,8 +74,8 @@ class Suite(object): @property def all_binaries_in_suite(self): if not self._all_binaries_in_suite: - self._all_binaries_in_suite = {x.pkg_id: x for a in self._binaries - for x in self._binaries[a].values()} + self._all_binaries_in_suite = \ + {x.pkg_id: x for a in self._binaries for x in self._binaries[a].values()} return self._all_binaries_in_suite def any_of_these_are_in_the_suite(self, pkgs):