From df8873c69fcc4f7ff47b486b8fd8ebfc2fa9e9f0 Mon Sep 17 00:00:00 2001 From: Satish Kamath Date: Mon, 10 Jun 2024 16:36:04 +0200 Subject: [PATCH] Making the linter happy. --- eessi/testsuite/tests/apps/espresso/espresso.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eessi/testsuite/tests/apps/espresso/espresso.py b/eessi/testsuite/tests/apps/espresso/espresso.py index 5366fe5b..a1675afd 100644 --- a/eessi/testsuite/tests/apps/espresso/espresso.py +++ b/eessi/testsuite/tests/apps/espresso/espresso.py @@ -68,8 +68,7 @@ def run_after_init(self): @run_after('init') def set_tag_ci(self): """ Setting tests under CI tag. """ - if (self.benchmark_info[0] in ['mpi.ionic_crystals.p3m'] and - SCALES[self.scale]['num_nodes'] < 2): + if (self.benchmark_info[0] in ['mpi.ionic_crystals.p3m'] and SCALES[self.scale]['num_nodes'] < 2): self.tags.add('CI') log(f'tags set to {self.tags}')