aboutsummaryrefslogtreecommitdiffstats
path: root/python/analytics
diff options
context:
space:
mode:
Diffstat (limited to 'python/analytics')
-rw-r--r--python/analytics/index.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/analytics/index.py b/python/analytics/index.py
index 1b385f84..75a6e2a6 100644
--- a/python/analytics/index.py
+++ b/python/analytics/index.py
@@ -93,7 +93,7 @@ class Index(object):
def __hash__(self):
- return hash(tuple(getattr(self, k) for k in self.__slots__ if k != '_observed'))
+ return hash(tuple(getattr(self, k) for k in self.__slots__[:-1]))
@property
def start_date(self):