aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2015-06-21 14:33:47 -0400
committerAlex Auvolat <alex@adnab.me>2015-06-21 14:33:47 -0400
commit0e52813a4e435cddeb80ec9972b2bf1fc791c0cc (patch)
treeb9fbb15faf677ef99f64dd8f189cabfab14adccf /data
parent557d0fa74de74b8dbd8618a972725a7a9926e452 (diff)
downloadtaxi-0e52813a4e435cddeb80ec9972b2bf1fc791c0cc.tar.gz
taxi-0e52813a4e435cddeb80ec9972b2bf1fc791c0cc.zip
Updates for Blocks compatibility
Diffstat (limited to 'data')
-rw-r--r--data/hdf5.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/hdf5.py b/data/hdf5.py
index 6e2f9a4..f3d6da2 100644
--- a/data/hdf5.py
+++ b/data/hdf5.py
@@ -13,7 +13,7 @@ class TaxiDataset(H5PYDataset):
def __init__(self, which_set, filename='data.hdf5', **kwargs):
self.filename = filename
kwargs.setdefault('load_in_memory', True)
- super(TaxiDataset, self).__init__(self.data_path, which_set, **kwargs)
+ super(TaxiDataset, self).__init__(self.data_path, (which_set,), **kwargs)
@property
def data_path(self):