Skip to content

Commit 6109356

Browse files
committed
Add the dataset files to the install list
Signed-off-by: Patrick Avery <patrick.avery@kitware.com>
1 parent e8a8b13 commit 6109356

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tomviz/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -625,6 +625,8 @@ endforeach()
625625
set(tomviz_python_modules
626626
__init__.py
627627
_internal.py
628+
dataset.py
629+
external_dataset.py
628630
fix_pdb.py
629631
operators.py
630632
internal_dataset.py

tomviz/python/tomviz/external_dataset.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
ARRAY_TYPES = (collections.abc.Sequence, np.ndarray)
99

1010

11-
# FIXME: do this
12-
# class Dataset(AbstractDataset):
13-
class Dataset:
11+
class Dataset(AbstractDataset):
1412
def __init__(self, arrays, active=None):
1513
# Holds the map of scalars name => array
1614
self.arrays = arrays

0 commit comments

Comments
 (0)