Skip to content
Snippets Groups Projects
Commit 0a484906 authored by Julius's avatar Julius
Browse files

fixed other error for mypy having wrong static type from subplots()

parent 05490f62
Branches
Tags
1 merge request!36Resolve "Automatic Property Testing"
Pipeline #1604435 passed
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment