Skip to content

Commit f694659

Browse files
authored
Merge pull request kal179#58 from akshranair/master
Fixed an error in the function determinant_quadrant
2 parents 9475c4c + 599dc32 commit f694659

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)