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

Skip to content

Commit d143d4d

Browse files
committed
Remove unused private helper method in mplot3d.
unused since e76fd7f
1 parent eb6664f commit d143d4d

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

lib/mpl_toolkits/mplot3d/axes3d.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -579,14 +579,6 @@ def get_w_lims(self):
579579
minz, maxz = self.get_zlim3d()
580580
return minx, maxx, miny, maxy, minz, maxz
581581

582-
def _determine_lims(self, xmin=None, xmax=None, *args, **kwargs):
583-
if xmax is None and np.iterable(xmin):
584-
xmin, xmax = xmin
585-
if xmin == xmax:
586-
xmin -= 0.05
587-
xmax += 0.05
588-
return (xmin, xmax)
589-
590582
def set_xlim3d(self, left=None, right=None, emit=True, auto=False,
591583
*, xmin=None, xmax=None):
592584
"""

0 commit comments

Comments
 (0)