From 27f5ddb7a003cda09bc193640d0b695327f1d2ff Mon Sep 17 00:00:00 2001 From: Will Handley Date: Mon, 18 Mar 2024 12:28:50 +0000 Subject: [PATCH] Updated out-of-date docs --- anesthetic/read/csv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anesthetic/read/csv.py b/anesthetic/read/csv.py index 3dd2713e..3a3ef0ea 100644 --- a/anesthetic/read/csv.py +++ b/anesthetic/read/csv.py @@ -5,7 +5,7 @@ def read_csv(filename, *args, **kwargs): - """Read a CSV file into a :class:`Samples` object.""" + """Read a CSV file into a :class:`anesthetic.samples.Samples` object.""" filename = Path(filename) kwargs['label'] = kwargs.get('label', filename.stem) wldf = wl_read_csv(filename.with_suffix('.csv'))