From 03e2ec2a047e1f1e40f3d9fdf0ff5757da4b73c9 Mon Sep 17 00:00:00 2001 From: Eachan Johnson Date: Sat, 5 Oct 2024 14:58:12 +0100 Subject: [PATCH] Fix typos --- carabiner/mpl/utils.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/carabiner/mpl/utils.py b/carabiner/mpl/utils.py index 76e1b24..013e1d2 100644 --- a/carabiner/mpl/utils.py +++ b/carabiner/mpl/utils.py @@ -242,7 +242,7 @@ def figsaver( """ def _figsave( - fig: Figure, + fig: figure.Figure, name: str, df: Optional[DataFrame] = None ) -> None: @@ -261,4 +261,5 @@ def _figsave( print_err(f"Saving data at {dataname}") df.to_csv(dataname, index=False) return None - return _figave \ No newline at end of file + + return _figsave \ No newline at end of file