Skip to content

Commit 55f9ae3

Browse files
restyled-commitss07641069
authored andcommitted
Restyled by autopep8
1 parent 9284b3b commit 55f9ae3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/tools/telink/process_binaries.py

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
sys.path.append(os.path.abspath(os.path.join(ZEPHYR_BASE, 'scripts/west_commands/runners')))
3131
from core import BuildConfiguration
3232

33+
3334
def merge_binaries(input_file1, input_file2, output_file, offset):
3435
with open(output_file, 'r+b' if os.path.exists(output_file) else 'wb') as outfile:
3536
# Merge input_file1 at offset 0
@@ -47,6 +48,7 @@ def merge_binaries(input_file1, input_file2, output_file, offset):
4748
outfile.seek(offset)
4849
outfile.write(infile2.read())
4950

51+
5052
# Obtain build configuration
5153
build_conf = BuildConfiguration(os.path.join(os.getcwd(), os.pardir))
5254

0 commit comments

Comments
 (0)