From 5bf9dab8e8272b11a69761785e2c08909a8f519e Mon Sep 17 00:00:00 2001 From: Caspar van Leeuwen Date: Thu, 28 Nov 2024 13:12:32 +0100 Subject: [PATCH] Fix flake8 issues --- eessi/testsuite/eessi_mixin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eessi/testsuite/eessi_mixin.py b/eessi/testsuite/eessi_mixin.py index 3226ac3f..5d36ace6 100644 --- a/eessi/testsuite/eessi_mixin.py +++ b/eessi/testsuite/eessi_mixin.py @@ -1,5 +1,5 @@ from reframe.core.builtins import parameter, run_after, variable -from reframe.core.exceptions import ReframeFatalError, SanityError +from reframe.core.exceptions import ReframeFatalError from reframe.core.pipeline import RegressionMixin from reframe.utility.sanity import make_performance_function import reframe.utility.sanity as sn @@ -197,11 +197,11 @@ def extract_runtime_info_from_log(self): self.cvmfs_repo_name = f'{repo_name}' software_subdir = sn.extractall(r'EESSI_SOFTWARE_SUBDIR: (?P.*)$', - f'{self.stagedir}/{self.stdout}', 'subdir', str) + f'{self.stagedir}/{self.stdout}', 'subdir', str) if software_subdir: self.cvmfs_software_subdir = f'{software_subdir}' module_path = sn.extractall(r'FULL_MODULEPATH: (?P.*)$', f'{self.stagedir}/{self.stdout}', - 'modpath', str) + 'modpath', str) if module_path: self.full_modulepath = f'{module_path}'