Commit 24c02165 authored by Stefan Behnel's avatar Stefan Behnel

Minor code simplification.

parent 8dedd0a9
......@@ -32,7 +32,7 @@ class Return(Action):
return isinstance(other, Return) and self.value == other.value
def __repr__(self):
return "Return(%s)" % repr(self.value)
return "Return(%r)" % self.value
class Call(Action):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment