tests again

This commit is contained in:
JanNeuendorf 2022-01-18 17:06:39 +01:00
parent 2342c51869
commit 677f1655a9

View file

@ -667,15 +667,16 @@ class Corr:
return return
def dump(self, filename): def dump(self, filename, **kwargs):
"""Dumps the Corr into a pickle file """Dumps the Corr into a pickle file
Parameters Parameters
---------- ----------
filename : str filename : str
Name of the file Name of the file
path : str
specifies a custom path for the file (default '.')
""" """
dump_object(self, filename) dump_object(self, filename, **kwargs)
return return
def print(self, range=[0, None]): def print(self, range=[0, None]):