Skip to content

Commit 10caf84

Browse files
bug fix
1 parent 00d3e3c commit 10caf84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Basic_Maths.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def TakingRoots(x,y,ResultDialog):
5353
global result
5454
result=x ** (1/y)
5555
print("{3} {0} ** (1/{1}) = {2}". format(x,y,result,ResultDialog))
56-
def SqaureRoot(x):
56+
def SqaureRoot(x,ResultDialog):
5757
x=x
5858
global result
5959
result=x ** (1/2)

0 commit comments

Comments
 (0)