Skip to content

Commit 3f7ab53

Browse files
committed
fixed the add_two_nums script
1 parent 2fb578a commit 3f7ab53

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

add_two_nums.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import typing
2+
13
__author__ = "Nitkarsh Chourasia"
24
__version__ = "1.0"
35
def addition(
@@ -17,7 +19,6 @@ def addition(
1719

1820
# returning the result.
1921
return f"The sum of {num1} and {num2} is: {sum_result}"
20-
)
2122

2223
print(addition(5, 10)) # This will use the provided parameters
2324
print(addition(2, 2))

0 commit comments

Comments
 (0)