From 28ef1ecde92d58f8c18a73f7f25335de9dda3847 Mon Sep 17 00:00:00 2001 From: Robert Grimm Date: Tue, 13 Aug 2024 22:12:41 -0400 Subject: [PATCH] suppress useless typing error --- prettypretty/plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prettypretty/plot.py b/prettypretty/plot.py index d68a0f1..a9bc4c1 100644 --- a/prettypretty/plot.py +++ b/prettypretty/plot.py @@ -295,7 +295,7 @@ def trace_spectrum( f3d, a3d = plt.subplots(subplot_kw={"projection": "3d"}) # type: ignore a3d.scatter(*all_points) f3d.savefig("spectrum-3d.svg") - plt.close(f3d) + plt.close(f3d) # type: ignore #plt.show(f3d) # type: ignore color = "#bbb" if with_pulses else "#000"