Skip to content

Commit

Permalink
Merge pull request #1355 from pyiron/pd
Browse files Browse the repository at this point in the history
Use keyword args for Dataframe.to_hdf
  • Loading branch information
pmrv authored Feb 23, 2024
2 parents 22a745b + db44aca commit dec8f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyiron_base/jobs/datamining.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ def enforce_update(self, enforce):
def _save_output(self):
with self.project_hdf5.open("output") as hdf5_output:
self.pyiron_table._df.to_hdf(
hdf5_output.file_name, hdf5_output.h5_path + "/table"
hdf5_output.file_name, key=hdf5_output.h5_path + "/table"
)

def to_hdf(self, hdf=None, group_name=None):
Expand Down

0 comments on commit dec8f09

Please sign in to comment.