Skip to content

Commit

Permalink
suppress useless typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
apparebit committed Aug 14, 2024
1 parent 18612ba commit 28ef1ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prettypretty/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 28ef1ec

Please sign in to comment.