diff --git a/docs/pyerrors/obs.html b/docs/pyerrors/obs.html index c47487a7..0fd0d50b 100644 --- a/docs/pyerrors/obs.html +++ b/docs/pyerrors/obs.html @@ -928,7 +928,7 @@ if datatype == "json.gz": from .input.json import dump_to_json - dump_to_json([self], file_name) + dump_to_json([self], file_name, **kwargs) elif datatype == "pickle": with open(file_name + '.p', 'wb') as fb: pickle.dump(self, fb) @@ -2486,7 +2486,7 @@ if datatype == "json.gz": from .input.json import dump_to_json - dump_to_json([self], file_name) + dump_to_json([self], file_name, **kwargs) elif datatype == "pickle": with open(file_name + '.p', 'wb') as fb: pickle.dump(self, fb) @@ -3685,7 +3685,7 @@ ensemble to the error and returns a dictionary containing the fractions.
if datatype == "json.gz": from .input.json import dump_to_json - dump_to_json([self], file_name) + dump_to_json([self], file_name, **kwargs) elif datatype == "pickle": with open(file_name + '.p', 'wb') as fb: pickle.dump(self, fb)