Core: Fix args in helper/printk_formatter

This commit is contained in:
Pragyansh Chaturvedi
2026-03-29 13:11:44 +05:30
parent 0e087b9ea5
commit f2b9767098

View File

@ -41,7 +41,7 @@ def handle_fstring_print(
fmt_parts,
exprs,
local_sym_tab,
compilation_context.struct_sym_tab,
compilation_context.structs_sym_tab,
)
else:
raise NotImplementedError(f"Unsupported f-string value type: {type(value)}")
@ -60,7 +60,7 @@ def handle_fstring_print(
compilation_context.module,
builder,
local_sym_tab,
compilation_context.struct_sym_tab,
compilation_context.structs_sym_tab,
)
args.append(arg_value)