From a7b96c3228be49e23c1f137f052525d4181e58ce Mon Sep 17 00:00:00 2001 From: Athanasius Date: Fri, 24 Jun 2022 14:52:43 +0100 Subject: [PATCH] scripts/eddn errors: Use 'in' form for EVA variants --- scripts/eddn-report-log-errors | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/eddn-report-log-errors b/scripts/eddn-report-log-errors index a3c77ef..f50900c 100755 --- a/scripts/eddn-report-log-errors +++ b/scripts/eddn-report-log-errors @@ -230,10 +230,7 @@ def process_file(input_file: str) -> None: # Abandoned/unmaintained project # # - elif ( - matches.group('software_name') == 'EVA [iPhone]' - or matches.group('software_name') == 'EVA [Android]' - ): + elif matches.group('software_name') in ('EVA [iPhone]', 'EVA [iPad]', 'EVA [Android]'): pass ####################################################################