Skip to content

Commit

Permalink
Fixed Bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
junioralive committed Aug 6, 2024
1 parent a9fc94b commit 2d96d1a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from scripts import addition, division

myaddition = addition.addition(1,5)
myaddition = addition.addition_numbers(1,5)
print(myaddition)

mydivision = division.divide_numbers(10,2)
Expand Down
Binary file modified scripts/__pycache__/addition.cpython-311.pyc
Binary file not shown.
Binary file modified scripts/__pycache__/division.cpython-311.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/subtraction.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
def subtraction_numbers(a,b):
def subtracte_numbers(a,b):
return a+b

0 comments on commit 2d96d1a

Please sign in to comment.