Skip to content
This repository has been archived by the owner on Feb 15, 2018. It is now read-only.

Commit

Permalink
Make AggregateValue have a typename that’s closer to what the server …
Browse files Browse the repository at this point in the history
…returns
  • Loading branch information
madninja committed Sep 26, 2016
1 parent 6105b6a commit 2879376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helium/timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from collections import Iterable, namedtuple


AggregateValue = namedtuple('AggregateValue', ['min', 'max', 'avg'])
AggregateValue = namedtuple('agg', ['min', 'max', 'avg'])
AggregateValue.__new__.__defaults__ = (None,) * len(AggregateValue._fields)


Expand Down

0 comments on commit 2879376

Please sign in to comment.