From 4596020ecdb819d73a4e374a1b314f5dbdb5ea52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Thu, 12 Apr 2018 09:27:46 +0200 Subject: [PATCH] Fix PEP8 warning about if not x in y MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář --- pungi/phases/pkgset/sources/source_koji.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/phases/pkgset/sources/source_koji.py b/pungi/phases/pkgset/sources/source_koji.py index 5fa1fff3..250b429f 100644 --- a/pungi/phases/pkgset/sources/source_koji.py +++ b/pungi/phases/pkgset/sources/source_koji.py @@ -429,7 +429,7 @@ def populate_global_pkgset(compose, koji_wrapper, path_prefix, event_id): # Ensure that every tag added to `variant_tags` is added also to # `compose_tags`. for variant_tag in variant_tags[variant]: - if not variant_tag in compose_tags: + if variant_tag not in compose_tags: compose_tags.append(variant_tag) if variant.mmds: