Skip to content

Commit

Permalink
Fixed backspace
Browse files Browse the repository at this point in the history
  • Loading branch information
ifnesi committed Jan 8, 2024
1 parent b0faa10 commit 689cc43
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion calculateAverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def process_file(
f"{location}={measurements[0]:.1f}/{(measurements[2] / measurements[3]) if measurements[3] !=0 else 0:.1f}/{measurements[1]:.1f}",
end=", ",
)
print("\b} ")
print("\b\b} ")


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion calculateAverageDuckDB.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
f"{row[0]}={row[1]}/{row[2]}/{row[3]}",
end=", ",
)
print("\b} ")
print("\b\b} ")
2 changes: 1 addition & 1 deletion calculateAveragePypy.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def process_file(
f"{location.decode('utf-8')}={measurements[0]:.1f}/{(measurements[2] / measurements[3]) if measurements[3] !=0 else 0:.1f}/{measurements[1]:.1f}",
end=", ",
)
print("\b} ")
print("\b\b} ")


if __name__ == "__main__":
Expand Down

0 comments on commit 689cc43

Please sign in to comment.