8000 Test image for axis positions · matplotlib/matplotlib@c76a9f0 · GitHub
[go: up one dir, main page]

Skip to content

Commit c76a9f0

Browse files
Test image for axis positions
1 parent 4370ecf commit c76a9f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/mpl_toolkits/mplot3d/axis3d.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,14 +375,14 @@ def _get_tickdir(self, position=None):
375375
tickdirs_base = [2, 2, 0]
376376
else:
377377
tickdirs_base = [1, 0, 0]
378-
if (0 <= azim_mod < 180):
378+
if 0 <= azim_mod < 180:
379379
tickdirs_base[2] = 1
380380
elif position == 'lower':
381381
if elev_mod >= 0:
382382
tickdirs_base = [1, 0, 1]
383383
else:
384384
tickdirs_base = [2, 2, 1]
385-
if (0 <= azim_mod < 180):
385+
if 0 <= azim_mod < 180:
386386
tickdirs_base[2] = 0
387387
info_i = [v["i"] for v in self._AXINFO.values()]
388388

Loading

0 commit comments

Comments
 (0)
0