Skip to content

Commit d64b7f3

Browse files
committed
Sort imports of qha/plotting.py
1 parent e6eb5ab commit d64b7f3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

qha/plotting.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@
66
.. moduleauthor:: Tian Qin <[email protected]>
77
.. moduleauthor:: Qi Zhang <[email protected]>
88
"""
9-
import matplotlib
9+
import pathlib
1010

11-
matplotlib.use('Agg')
11+
import matplotlib
1212
import matplotlib.pylab as plt
13+
import numpy as np
1314
import pandas as pd
1415
import seaborn as sns
15-
import pathlib
16-
import numpy as np
16+
17+
matplotlib.use('Agg')
1718

1819
# ===================== What can be exported? =====================
1920
__all__ = ['Plotter']

0 commit comments

Comments
 (0)