Skip to content

Commit

Permalink
Updated test output
Browse files Browse the repository at this point in the history
  • Loading branch information
jmitchel3 committed Jan 3, 2025
1 parent 6f9dbdd commit d3a8d88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sample_project/cfehome/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
def math_add_task(a, b, *args, **kwargs):
logger.info("Adding %s and %s", a, b)
with open("test.txt", "w") as f:
f.write(f"{a} + {b} = {a + b}")
f.write(f"{a} + {b} = {a + b}\n")
return a + b

0 comments on commit d3a8d88

Please sign in to comment.