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.
__repr__
LambdaFunction
1 parent 9e6f9b9 commit 7571bbbCopy full SHA for 7571bbb
mini_lambda/main.py
@@ -79,6 +79,9 @@ def as_expression(self):
79
def __str__(self):
80
return self.expression._str_expr
81
82
+ def __repr__(self):
83
+ return "<LambdaFunction: %s>" % str(self)
84
+
85
def as_function(self):
86
"""
87
freezes this expression so that it can be called directly, in other words that calling it actually calls
0 commit comments