diff --git a/pyerrors/correlators.py b/pyerrors/correlators.py index 8adef85e..c1c66389 100644 --- a/pyerrors/correlators.py +++ b/pyerrors/correlators.py @@ -667,15 +667,16 @@ class Corr: return - def dump(self, filename): + def dump(self, filename, **kwargs): """Dumps the Corr into a pickle file - Parameters ---------- filename : str Name of the file + path : str + specifies a custom path for the file (default '.') """ - dump_object(self, filename) + dump_object(self, filename, **kwargs) return def print(self, range=[0, None]):