Commit b5c2ba77 authored by Gaetano Raffaele's avatar Gaetano Raffaele
Browse files

ENH: use glob-style patterns for userfeat.

parent ab945bf0
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -9,7 +9,7 @@ from Postprocessing import Report, MapFormatting
def unroll_file_list(lst):
out_lst = []
for f in lst:
out_lst.extend(glob.glob(f))
out_lst.extend(sorted(glob.glob(f)))
return out_lst
def process_timeseries(oroot, d, ts_lst_pkl):
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment