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