diff --git a/app/rollerverbrauch/tools.py b/app/rollerverbrauch/tools.py index d33c255..ca68794 100644 --- a/app/rollerverbrauch/tools.py +++ b/app/rollerverbrauch/tools.py @@ -29,7 +29,6 @@ class VehicleStats: last_ps = vehicle.pitstops[index - 1] current_ps = vehicle.pitstops[index] self.average_litres.append(StatsEvent(current_ps.date, round(100 * current_ps.litres/(current_ps.odometer - last_ps.odometer),2))) - print(index) class StatsEvent: