Skip to content
Snippets Groups Projects
Commit 5b75e46e authored by martinRenou's avatar martinRenou
Browse files

Hide base data source attributes for the GUI

parent 5d67e0df
No related branches found
No related tags found
1 merge request!73Hide base attributes of the models for the GUI
...@@ -19,11 +19,11 @@ class BaseDataSourceModel(ABCHasStrictTraits): ...@@ -19,11 +19,11 @@ class BaseDataSourceModel(ABCHasStrictTraits):
#: Specifies binding between input slots and source for that value. #: Specifies binding between input slots and source for that value.
#: Each InputSlotMap instance specifies this information for each of the #: Each InputSlotMap instance specifies this information for each of the
#: slots. #: slots.
input_slot_maps = List(Instance(InputSlotMap)) input_slot_maps = List(Instance(InputSlotMap), visible=False)
#: Allows to assign names to the output slots, so that they can be #: Allows to assign names to the output slots, so that they can be
#: referenced somewhere else (e.g. the KPICalculators). #: referenced somewhere else (e.g. the KPICalculators).
output_slot_names = List(String()) output_slot_names = List(String(), visible=False)
def __init__(self, factory, *args, **kwargs): def __init__(self, factory, *args, **kwargs):
self.factory = factory self.factory = factory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment