summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--polymatrix/statemonad/impl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/polymatrix/statemonad/impl.py b/polymatrix/statemonad/impl.py
index 1b78daa..817ce47 100644
--- a/polymatrix/statemonad/impl.py
+++ b/polymatrix/statemonad/impl.py
@@ -11,7 +11,7 @@ class StateMonadImpl(StateMonad):
def __str__(self):
if not self.arguments:
- return super().__str__(self)
+ return f"{str(self.apply_func.__name__)}(...)"
args = str(self.arguments)
if isinstance(self.arguments, Iterable):