Skip to content

Commit

Permalink
remove inplace arg of dataset.update (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
benbovy committed Sep 18, 2019
1 parent 1142cbb commit 23567e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xsimlab/drivers.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def _get_output_dataset(self):
var_name = '__'.join(key)
xr_vars[var_name] = self._to_xr_variable(key, clock)

out_ds = self.dataset.update(xr_vars, inplace=False)
out_ds = self.dataset.update(xr_vars)

# remove output_vars attributes in output dataset
for clock in self.output_vars:
Expand Down

0 comments on commit 23567e0

Please sign in to comment.