Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c628dc2

Browse filesBrowse files
committed
fix test for null variables
1 parent cf0dc54 commit c628dc2
Copy full SHA for c628dc2

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

‎lib/mpl_toolkits/axisartist/clip_path.py‎

Copy file name to clipboardExpand all lines: lib/mpl_toolkits/axisartist/clip_path.py
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.