File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 26
26
import sys
27
27
import time
28
28
import urllib
29
+ from collections import namedtuple
30
+ from operator import attrgetter
31
+
32
+ from jobstats import (list_stats_dir_profiles ,
33
+ load_stats_dir , merge_all_jobstats )
34
+
29
35
if sys .version_info [0 ] < 3 :
30
36
import urllib2
31
37
Request = urllib2 .Request
32
38
URLOpen = urllib2 .urlopen
33
39
else :
34
- import urllib .request , urllib .parse , urllib .error
40
+ import urllib .request
41
+ import urllib .parse
42
+ import urllib .error
35
43
Request = urllib .request .Request
36
44
URLOpen = urllib .request .urlopen
37
- from collections import namedtuple
38
- from operator import attrgetter
39
-
40
- from jobstats import (list_stats_dir_profiles ,
41
- load_stats_dir , merge_all_jobstats )
42
-
43
45
44
46
MODULE_PAT = re .compile (r'^(\w+)\.' )
45
47
You can’t perform that action at this time.
0 commit comments