Skip to content

Commit

Permalink
Add extra type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ajparsons committed Oct 17, 2023
1 parent 2b83682 commit d6eabdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data_common/pandas/df_extensions/space.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ def plot3d(
for x_var, y_var, z_var in combos:
chart_no += 1
ax = fig.add_subplot(rows, 2, chart_no, projection="3d")
ax.scatter(df[x_var], df[y_var], df[z_var], c=labels)
ax.scatter(df[x_var], df[y_var], df[z_var], c=labels) # type: ignore
ax.set_xlabel(self._axis_label(x_var))
ax.set_ylabel(self._axis_label(y_var))
ax.set_zlabel(self._axis_label(z_var)) # type: ignore
Expand Down

0 comments on commit d6eabdb

Please sign in to comment.