Skip to content

Commit

Permalink
Adding the the new multiply features and its tests to the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
nikishe committed Nov 1, 2022
1 parent 818ff3b commit 3e66b5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pythoncalculator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .add import add

from .multiply import multiply
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.

0 comments on commit 3e66b5a

Please sign in to comment.