Skip to content

Commit 4c57add

Browse files
committed
from __future__ import print_function added in previous commit is now at the beginning of the file
1 parent 1103385 commit 4c57add

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/mpl_toolkits/axisartist/angle_helper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import print_function
2+
13
from math import floor
24

35
import numpy as np
@@ -6,7 +8,6 @@
68
A = np.array
79

810
from mpl_toolkits.axisartist.grid_finder import ExtremeFinderSimple
9-
from __future__ import print_function
1011

1112
def select_step_degree(dv):
1213

lib/mpl_toolkits/axisartist/grid_finder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import print_function
2+
13
import numpy as np
24
import matplotlib.cbook as mcbook
35
from matplotlib.transforms import Bbox
@@ -7,8 +9,6 @@
79
import matplotlib.ticker as mticker
810
from matplotlib.transforms import Transform
911

10-
from __future__ import print_function
11-
1212
# extremes finder
1313

1414
class ExtremeFinderSimple(object):

0 commit comments

Comments
 (0)