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 69d16d4 commit 56907f9Copy full SHA for 56907f9
calculator/api/calculator.py
@@ -64,7 +64,7 @@ def get_equation(self):
64
>>> calc.get_equation()
65
2 x 2
66
"""
67
- eq = " ".join(self.equation_first, self.equation_type, self.equation_last)
+ eq = " ".join([self.equation_first, self.equation_type, self.equation_last])
68
eq = eq.rstrip()
69
return eq
70
0 commit comments