We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14e6826 commit edbbb10Copy full SHA for edbbb10
src/main/python/systemds/scuro/representations/context.py
@@ -26,12 +26,12 @@
26
27
28
class Context(Representation):
29
- def __init__(self, name, parameters):
+ def __init__(self, name, parameters = None):
30
"""
31
Parent class for different context operations
32
:param name: Name of the context operator
33
34
- super().__init__(name, parameters)
+ super().__init__(name) # TODO add parameters
35
36
@abc.abstractmethod
37
def execute(self, modality: Modality):
0 commit comments