Removed print

This commit is contained in:
Joachim Lusiardi 2016-05-02 08:03:24 +02:00
parent 99df28a015
commit 471f1415d9
1 changed files with 0 additions and 1 deletions

View File

@ -29,7 +29,6 @@ class VehicleStats:
last_ps = vehicle.pitstops[index - 1] last_ps = vehicle.pitstops[index - 1]
current_ps = vehicle.pitstops[index] 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))) self.average_litres.append(StatsEvent(current_ps.date, round(100 * current_ps.litres/(current_ps.odometer - last_ps.odometer),2)))
print(index)
class StatsEvent: class StatsEvent: