From 7c2e85c5dad6d0614274f313090a9f400a348419 Mon Sep 17 00:00:00 2001 From: Alexandru Fikl Date: Thu, 21 Sep 2023 10:17:08 +0300 Subject: [PATCH] chore: fix formatting --- pycaputo/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycaputo/utils.py b/pycaputo/utils.py index 07f7e5c..e8a2166 100644 --- a/pycaputo/utils.py +++ b/pycaputo/utils.py @@ -383,7 +383,7 @@ def figure(filename: PathLike | None = None, **kwargs: Any) -> Iterator[Any]: if filename is not None: savefig(fig, filename, **kwargs) else: - mp.show() # type: ignore[no-untyped-call] + mp.show() # type: ignore[no-untyped-call] mp.close(fig)