Skip to content

Commit 0a060b2

Browse files
committed
tools/mpy_ld.py: Fix ruff error.
Signed-off-by: NikhitaR-IFX <nikhita.rajasekhar@infineon.com>
1 parent 9e84ad3 commit 0a060b2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/mpy_ld.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,7 @@ def link_objects(env, native_qstr_vals_len):
12341234
),
12351235
)
12361236

1237-
if len(undef_errors):
1237+
if undef_errors:
12381238
raise LinkError("\n".join(undef_errors))
12391239

12401240
# Align sections, assign their addresses, and create full_text

0 commit comments

Comments
 (0)