Skip to content

Commit fd1d5cf

Browse files
Remove argparse, add that back later
1 parent 8c19ace commit fd1d5cf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python-calculator/calculator.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
# 2. Subtraction
1010
# 3. Multiplication
1111
# 4. Division
12-
import argparse
1312

1413
# This function adds two numbers
1514
def addition(x, y):
@@ -71,4 +70,4 @@ def main():
7170
print("ERROR. You must choose a number in the range 1-4. Please try again...")
7271

7372
if __name__ == "__main__":
74-
main()
73+
main()

0 commit comments

Comments
 (0)