Skip to content

Commit 9075eff

Browse files
committed
explicit variable name
1 parent 8cb4872 commit 9075eff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/create_lilypad_module/templates/src/run_inference.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ def main():
6868
output_path = "/outputs/result.json"
6969

7070
try:
71-
with open(output_path, "w") as f:
72-
json.dump(output, f, indent=2)
71+
with open(output_path, "w") as file:
72+
json.dump(output, file, indent=2)
7373
print(
7474
f"✅ Successfully wrote output to {output_path}",
7575
)

0 commit comments

Comments
 (0)