From 0a4849065207b3e022be78fee4458ec4f9fc4680 Mon Sep 17 00:00:00 2001 From: Julius <juliusflorstedt@gmail.com> Date: Sun, 2 Feb 2025 16:22:59 +0100 Subject: [PATCH] fixed other error for mypy having wrong static type from subplots() --- tests_automatic/test_scatter3d_automatic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests_automatic/test_scatter3d_automatic.py b/tests_automatic/test_scatter3d_automatic.py index 6875614..8bfcd52 100644 --- a/tests_automatic/test_scatter3d_automatic.py +++ b/tests_automatic/test_scatter3d_automatic.py @@ -48,7 +48,7 @@ def test_scatter3d_properties( _, serializer_ax = serializer.subplots(subplot_kw={"projection": "3d"}) _fig, ax = plt.subplots(subplot_kw={"projection": "3d"}) try: - ax.scatter(x, y, z, s=s, label=label) + ax.scatter(x, y, z, s=s, label=label) # type: ignore except Exception as _e: plt.close() else: -- GitLab