very smart

master
Fox Wilson 2016-05-28 18:55:39 -04:00
parent bd7967f15c
commit d58f4255ea
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ def calculate_graph(scoredata):
for i in sorted(our_solves, key=lambda k: k.time):
team_data.append((str(i.time), s))
s += i.challenge.points
team_data.append((str(i.time + timedelta(microseconds=100)), s))
team_data.append((str(i.time + timedelta(microseconds=1000)), s))
team_data.append((str(datetime.now()), score))
graph_data.append((name, team_data))
return graph_data