Skip to content

Commit

Permalink
Fixed bugs in new file IO storage...
Browse files Browse the repository at this point in the history
  • Loading branch information
PP501 committed Dec 12, 2023
1 parent c3f3d1a commit c7094ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sqdtoolz/Drivers/SMU_Keithley236.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,4 +389,4 @@ def get_data(self):
'data' : { 'Current' : currents, 'Voltage' : voltages }
}

return data_pkt
return {'data': data_pkt}
2 changes: 1 addition & 1 deletion sqdtoolz/Experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def _prepare_rec_params(self, rec_params, rec_params_extra):
}
for cur_param in rec_params_extra:
ret_data['data'][cur_param] = np.array([np.nan])
return ret_data
return {'data': ret_data}


def save_config(self, save_dir, name_time_diag, name_expt_params, sweep_queue = [], file_index = 0):
Expand Down

0 comments on commit c7094ea

Please sign in to comment.