Skip to content

Commit edbbb10

Browse files
change parameters in context
1 parent 14e6826 commit edbbb10

File tree

1 file changed

+2
-2
lines changed
  • src/main/python/systemds/scuro/representations

1 file changed

+2
-2
lines changed

src/main/python/systemds/scuro/representations/context.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626

2727

2828
class Context(Representation):
29-
def __init__(self, name, parameters):
29+
def __init__(self, name, parameters = None):
3030
"""
3131
Parent class for different context operations
3232
:param name: Name of the context operator
3333
"""
34-
super().__init__(name, parameters)
34+
super().__init__(name) # TODO add parameters
3535

3636
@abc.abstractmethod
3737
def execute(self, modality: Modality):

0 commit comments

Comments
 (0)