Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c628dc2

Browse files
committed
fix test for null variables
1 parent cf0dc54 commit c628dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mpl_toolkits/axisartist/clip_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import warnings
1111

1212
def atan2(dy, dx):
13-
if dx == 0 and dx == 0:
13+
if dx == 0 and dy == 0:
1414
warnings.warn("dx and dy is 0")
1515
return 0
1616
else:

0 commit comments

Comments
 (0)