Skip to content

Commit deef958

Browse files
authored
fix minor code style issue by using "not success" instead of "not(success)"
1 parent 6bc53e6 commit deef958

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/framework/easyblock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4207,7 +4207,7 @@ def persists_failed_compilation_log_and_artifacts(success, application_log, sile
42074207
silent=silent
42084208
)
42094209

4210-
if err_log_path and not(success):
4210+
if err_log_path and not success:
42114211
for log_file in logs:
42124212
target_file = os.path.join(err_log_path, os.path.basename(log_file))
42134213
copy_file(log_file, target_file)

0 commit comments

Comments
 (0)