We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb92923 commit 3110c21Copy full SHA for 3110c21
lib/matplotlib/projections/polar.py
@@ -424,8 +424,7 @@ def __call__(self):
424
425
def nonsingular(self, vmin, vmax):
426
# docstring inherited
427
- return ((0, 1) if (vmin, vmax) == (-np.inf, np.inf) # Init. limits.
428
- else self.base.nonsingular(vmin, vmax))
+ return self.base.nonsingular(vmin, vmax)
429
430
def view_limits(self, vmin, vmax):
431
vmin, vmax = self.base.view_limits(vmin, vmax)
0 commit comments