File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ def monitorh5_to_dict(filename, key= 'Bunch'):
5959def monitorh5_to_obj (filename , key = 'Bunch' ):
6060 return obj_from_dict (monitorh5_to_dict (filename , key ))
6161
62- def monitorh5list_to_dict (filename_list , permissive = False ):
63- monitor_dict = monitorh5_to_dict (filename_list [0 ])
62+ def monitorh5list_to_dict (filename_list , key = 'Bunch' , permissive = False ):
63+ monitor_dict = monitorh5_to_dict (filename_list [0 ], key = key )
6464 for i_file in xrange (1 ,len (filename_list )):
6565 print ('Loading ' + filename_list [i_file ])
6666 try :
@@ -75,8 +75,8 @@ def monitorh5list_to_dict(filename_list, permissive=False):
7575
7676 return monitor_dict
7777
78- def monitorh5list_to_obj (filename_list , key = 'Bunch' , flag_transpose = False ):
79- return obj_from_dict (monitorh5list_to_dict (filename_list , key , flag_transpose ))
78+ def monitorh5list_to_obj (filename_list , key = 'Bunch' , permissive = False ):
79+ return obj_from_dict (monitorh5list_to_dict (filename_list , key , permissive ))
8080
8181
8282def dict_to_h5 (dict_save , filename ):
You can’t perform that action at this time.
0 commit comments