Skip to content

Commit

Permalink
Merge branch 'master' of github.com:StarostinV/gixi
Browse files Browse the repository at this point in the history
  • Loading branch information
StarostinV committed Jun 29, 2022
2 parents deda13e + e6b3ba9 commit ea27df0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gixi/server/servers/save_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def save_data(self, data_dict: dict):
if data_dict:
with self.time_recorder():
file_name = _get_path_name(paths[0], self.src_path)
data_dict = {k: data_dict[k] for k in self._keys}
data_dict = {k: data_dict[k] for k in self._keys if k in data_dict}
self.h5file.save(file_name, data_dict, attrs=dict(paths=path_names))


Expand Down

0 comments on commit ea27df0

Please sign in to comment.