Skip to content

Commit

Permalink
Merge pull request #2 from Robbo-lab/1-fix-subtract-method-issue
Browse files Browse the repository at this point in the history
fix: restore function subtract; fixes #1
  • Loading branch information
Robbozinoz authored Mar 18, 2024
2 parents 7cf41f3 + 9fafbd0 commit fc69886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ def add(a, b):
return a + b

def subtract(a, b):
return a + b # <--- fix this in step 7
return a - b

def multiply(a, b):
return a * b
Expand Down

0 comments on commit fc69886

Please sign in to comment.