Skip to content

Commit c8abd2e

Browse files
restyled-commitss07641069
authored andcommitted
Restyled by autopep8
1 parent 6b2affc commit c8abd2e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scripts/tools/telink/process_binaries.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,12 @@ def merge_binaries(input_file1, input_file2, output_file, offset):
9898
# Merge Factory Data binary if configured
9999
if build_conf.getboolean('CONFIG_CHIP_FACTORY_DATA_MERGE_WITH_FIRMWARE'):
100100
if os.path.exists('merged.bin'):
101-
merge_binaries('merged.bin', 'factory/factory_data.bin', 'merged.bin', build_conf['CONFIG_TELINK_FACTORY_DATA_PARTITION_ADDR'])
101+
merge_binaries('merged.bin', 'factory/factory_data.bin', 'merged.bin',
102+
build_conf['CONFIG_TELINK_FACTORY_DATA_PARTITION_ADDR'])
102103
else:
103104
# Initialize merged.bin with zephyr.bin since no base binary was created
104-
merge_binaries('zephyr.bin', 'factory/factory_data.bin', 'merged.bin', build_conf['CONFIG_TELINK_FACTORY_DATA_PARTITION_ADDR'])
105+
merge_binaries('zephyr.bin', 'factory/factory_data.bin', 'merged.bin',
106+
build_conf['CONFIG_TELINK_FACTORY_DATA_PARTITION_ADDR'])
105107

106108
# Check if merged.bin was created by any enabled feature, otherwise symlink zephyr.bin
107109
if not os.path.exists('merged.bin'):

0 commit comments

Comments
 (0)