fix style

This commit is contained in:
Patrick Moessler 2024-08-11 22:15:14 +02:00
parent 7b3af122b0
commit 41aecfc45c
2 changed files with 3 additions and 2 deletions

View file

@ -117,5 +117,6 @@ def main() -> None:
end_time = time.time()
print(
f"Charging Finished in {end_time-start_time:.1f} seconds. Total current: {result.sum_current / 3.6:.3f} mAh, Total energy: {result.sum_energy / 3.6 :.3f} mWh"
f"Charging Finished in {end_time-start_time:.1f} seconds.\n"
f"Total current: {result.sum_current / 3.6:.3f} mAh, Total energy: {result.sum_energy / 3.6:.3f} mWh"
)