Skip to content

Commit 43e7d3b

Browse files
authored
Merge pull request #14890 from anntzer/killprivate
Remove unused private helper method in mplot3d.
2 parents eb6664f + d143d4d commit 43e7d3b

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

lib/mpl_toolkits/mplot3d/axes3d.py

-8
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)