8000 FIX: minor fixes · matplotlib/matplotlib@40f60a6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 40f60a6

Browse files
committed
FIX: minor fixes
1 parent 5d1cdb1 commit 40f60a6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/matplotlib/projections/polar.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from collections import OrderedDict
22
import types
3+
import warnings
34

45
import numpy as np
5-
import warnings
66

77
from matplotlib.axes import Axes
88
import matplotlib.axis as maxis
@@ -447,7 +447,6 @@ def refresh(self):
447447
def view_limits(self, vmin, vmax):
448448
vmin, vmax = self.base.view_limits(vmin, vmax)
449449
if vmax > vmin:
450-
# this allows inverted r/y-lims
451450
vmin = min(0, vmin)
452451
return mtransforms.nonsingular(vmin, vmax)
453452

0 commit comments

Comments
 (0)
0