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

Skip to content

Commit c6e151f

Browse files
author
Vedant Nanda
committed
removed commented code
1 parent 52c6725 commit c6e151f

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

lib/mpl_toolkits/mplot3d/axes3d.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -587,18 +587,6 @@ def _determine_lims(self, xmin=None, xmax=None, *args, **kwargs):
587587
xmax += 0.05
588588
return (xmin, xmax)
589589

590-
# def _validate_axis_limits(self, limit, convert):
591-
# """
592-
# Raise ValueError if specified axis limits are infinite.
593-
594-
# """
595-
# if limit is not None:
596-
# converted_limit = convert(limit)
597-
# if (isinstance(converted_limit, float) and
598-
# (not np.isreal(converted_limit) or not np.isfinite(converted_limit))):
599-
# raise ValueError("Axis limits cannot be NaN or Inf")
600-
# return converted_limit
601-
602590
def set_xlim3d(self, left=None, right=None, emit=True, auto=False, **kw):
603591
"""
604592
Set 3D x limits.

0 commit comments

Comments
 (0)