Skip to content

Commit cd11348

Browse files
Fix Bug.
1 parent b073aed commit cd11348

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

EN/calc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
n2=float(input('{0} Enter The 2st Number: '. format(cmd)))
1717
process=input('{0} Enter the Transaction You Want to Perform: '. format(cmd))
1818
if process=="1":
19-
addition(n1,n2)
19+
Addition(n1,n2)
2020
elif process=="2":
2121
Extraction(n1,n2)
2222
elif process=="3":
@@ -26,4 +26,4 @@
2626
elif process=="5":
2727
Percentage(n1,n2)
2828
else:
29-
error_msg()
29+
error_msg(error_dialog)

TR/calc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
s2=float(input('{0} 2. sayiyi giriniz: '. format(cmd)))
1717
islem=input('{0} Gerçekleştirmek İstediğiniz İşlemi Giriniz: '. format(cmd))
1818
if islem=="1":
19-
addition(s1,s2)
19+
Addition(s1,s2)
2020
elif islem=="2":
2121
Extraction(s1,s2)
2222
elif islem=="3":
@@ -26,4 +26,4 @@
2626
elif islem=="5":
2727
Percentage(s1,s2)
2828
else:
29-
error_msg()
29+
error_msg(error_dialog)

0 commit comments

Comments
 (0)