Skip to content

Commit 48d8cb7

Browse files
committed
AMDGCN: Please hound linter
Signed-off-by: Jan André Reuter <[email protected]>
1 parent 589d195 commit 48d8cb7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

easybuild/tools/options.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,9 @@ def validate(self):
10121012
if not amdgcn_cc_regex.match(x) and not amdgcn_generic_regex.match(x)]
10131013
if faulty_amdgcn_ccs:
10141014
error_msg = "Incorrect values in --amdgcn-capabilities (expected pattern: '%s' or '%s'): %s"
1015-
error_msgs.append(error_msg % (amdgcn_cc_regex.pattern, amdgcn_generic_regex.pattern, ', '.join(faulty_amdgcn_ccs)))
1015+
error_msgs.append(error_msg % (amdgcn_cc_regex.pattern,
1016+
amdgcn_generic_regex.pattern,
1017+
', '.join(faulty_amdgcn_ccs)))
10161018

10171019
if error_msgs:
10181020
raise EasyBuildError(

0 commit comments

Comments
 (0)