diff options
author | Alex Auvolat <alex@adnab.me> | 2015-06-21 14:33:47 -0400 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2015-06-21 14:33:47 -0400 |
commit | 0e52813a4e435cddeb80ec9972b2bf1fc791c0cc (patch) | |
tree | b9fbb15faf677ef99f64dd8f189cabfab14adccf /data | |
parent | 557d0fa74de74b8dbd8618a972725a7a9926e452 (diff) | |
download | taxi-0e52813a4e435cddeb80ec9972b2bf1fc791c0cc.tar.gz taxi-0e52813a4e435cddeb80ec9972b2bf1fc791c0cc.zip |
Updates for Blocks compatibility
Diffstat (limited to 'data')
-rw-r--r-- | data/hdf5.py | 2 |
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): |