Skip to content

Commit 599dc32

Browse files
committed
Fixed an error in the function
1 parent ae10f3e commit 599dc32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cartesian_plane_quadrant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def determine_quadrant(x, y):
1212
elif x > 0 and y < 0 :
1313
return 'IV(+,-)'
1414
else :
15-
return 'Invalid parameters were provided')
15+
return 'Invalid parameters were provided'
1616
except TypeError:
1717
return "X and Y co-ords must be integers and not X {}, Y{}".format(type(x), type(y))
1818

0 commit comments

Comments
 (0)