Skip to content

Commit e2c44d6

Browse files
committed
Corrected imports order.
1 parent 488fc91 commit e2c44d6

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

structure_threader/plotter/structplot.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,20 @@
1616
# You should have received a copy of the GNU General Public License
1717
# along with structure_threader. If not, see <http://www.gnu.org/licenses/>.
1818

19+
import logging
20+
from os.path import basename, join, splitext
21+
from collections import Counter, defaultdict, OrderedDict
22+
import colorlover as cl
23+
1924
from plotly.offline import plot
2025
import plotly.graph_objs as go
2126
from plotly import tools
22-
import colorlover as cl
2327

24-
from os.path import basename, join, splitext
25-
from collections import Counter, defaultdict, OrderedDict
2628
import numpy as np
2729
import matplotlib
28-
import logging
29-
matplotlib.use('Agg')
3030
import matplotlib.pyplot as plt
31+
matplotlib.use('Agg')
32+
3133

3234
try:
3335
from plotter.html_template import ploty_html

0 commit comments

Comments
 (0)