Skip to content

Commit

Permalink
Update basic-calculator-iv.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 authored Jan 22, 2018
1 parent 07e1520 commit 111092a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Python/basic-calculator-iv.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ def compute(operands, operators):
operands.append(left - right)
elif op == '*':
operands.append(left * right)
elif op == '/':
operands.append(left / right)

def parse(s):
if not s:
Expand Down

0 comments on commit 111092a

Please sign in to comment.