Skip to content

Commit 1d4ca60

Browse files
committed
fix format issue
1 parent 322e2ff commit 1d4ca60

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/mbed_tools/build/config.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def generate_config(target_name: str, toolchain: str, program: MbedProgram) -> p
4141
write_file(cmake_config_file_path, cmake_file_contents)
4242
return cmake_config_file_path
4343

44+
4445
def is_image_hex(target_name: str, program: MbedProgram) -> bool:
4546
"""Check if a target's image format is hex instead of bin.
4647
@@ -55,6 +56,7 @@ def is_image_hex(target_name: str, program: MbedProgram) -> bool:
5556
target_build_attributes = get_target_by_name(target_name, targets_data)
5657
return "OUTPUT_EXT" in target_build_attributes and target_build_attributes["OUTPUT_EXT"] == "hex"
5758

59+
5860
def _load_raw_targets_data(program: MbedProgram) -> Any:
5961
targets_data = decode_json_file(program.mbed_os.targets_json_file)
6062
if program.files.custom_targets_json.exists():

0 commit comments

Comments
 (0)