Skip to content

Commit

Permalink
Merge pull request #7 from nikishe/multiply
Browse files Browse the repository at this point in the history
multiply feature
  • Loading branch information
nikishe authored Nov 1, 2022
2 parents 9d1cb6c + c0c7193 commit 5c30b58
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pythoncalculator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from .add import add
from .multiply import multiply
from .divide import divide
from .subtract import subtract
2 changes: 2 additions & 0 deletions pythoncalculator/multiply.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def multiply(x, y):
return x * y
Empty file added tests/test_multiply.py
Empty file.

0 comments on commit 5c30b58

Please sign in to comment.