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

Skip to content

Commit d94085d

Browse files
committed
PEP8 : re-order imports in ticker.py
1 parent 8185d63 commit d94085d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/matplotlib/ticker.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,6 @@
146146
unicode_literals)
147147

148148
import six
149-
if six.PY3:
150-
long = int
151149

152150
import decimal
153151
import locale
@@ -157,6 +155,9 @@
157155
from matplotlib import cbook
158156
from matplotlib import transforms as mtransforms
159157

158+
if six.PY3:
159+
long = int
160+
160161

161162
class _DummyAxis(object):
162163
def __init__(self, minpos=0):

0 commit comments

Comments
 (0)