We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9bf2674 + db0e6d5 commit e591ca2Copy full SHA for e591ca2
1 file changed
propertyestimator/protocols/groups.py
@@ -700,11 +700,15 @@ def conditions(self):
700
def __init__(self, protocol_id):
701
"""Constructs a new ConditionalGroup
702
"""
703
- super().__init__(protocol_id)
704
-
705
self._max_iterations = 10
706
self._conditions = []
707
+ super().__init__(protocol_id)
+
708
+ def _initialize(self):
709
+ """Initialize the protocol."""
710
711
+ super(ConditionalGroup, self)._initialize()
712
self.required_inputs.append(ProtocolPath('conditions'))
713
714
def _set_schema(self, schema_value):
0 commit comments