From 4817daebb4227f042db72e5712b0bc1f3a2e897f Mon Sep 17 00:00:00 2001 From: fjosw Date: Sun, 13 Feb 2022 16:13:49 +0000 Subject: [PATCH] Documentation updated --- docs/pyerrors/obs.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)