Skip to content

Commit 56907f9

Browse files
committed
Update calculator.py
Oops again again!
1 parent 69d16d4 commit 56907f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

calculator/api/calculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def get_equation(self):
6464
>>> calc.get_equation()
6565
2 x 2
6666
"""
67-
eq = " ".join(self.equation_first, self.equation_type, self.equation_last)
67+
eq = " ".join([self.equation_first, self.equation_type, self.equation_last])
6868
eq = eq.rstrip()
6969
return eq
7070

0 commit comments

Comments
 (0)