Remove unneeded newlines

Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
Gabor Mezei 2024-09-26 13:01:34 +02:00
parent fb06101b9f
commit 224152eec0
No known key found for this signature in database
GPG Key ID: 6310BD29B0BFF98C

View File

@ -195,7 +195,6 @@ If what is False, announce that the job has failed.'''
c_build_helper.generate_c_file(c_file, 'depends.py', header, lambda x: '')
c_file.close()
c_build_helper.compile_c_file(c_name, exe_name, include_path)
return True
except c_build_helper.CompileError as e:
@ -204,7 +203,6 @@ If what is False, announce that the job has failed.'''
log_line('Inconsistent config option(s):')
for option in sorted(failed):
log_line(' ' + option)
return False
finally: