8000 STY: line length · matplotlib/matplotlib@6a234a9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6a234a9

Browse files
committed
STY: line length
1 parent 247ab8e commit 6a234a9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/mpl_toolkits/tests/test_mplot3d.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -987,7 +987,9 @@ def test_equal_box_aspect():
987987
ax.plot3D(*zip(s, e), color="b")
988988

989989
# Make axes limits
990-
xyzlim = np.column_stack([ax.get_xlim3d(), ax.get_ylim3d(), ax.get_zlim3d()])
990+
xyzlim = np.column_stack(
991+
[ax.get_xlim3d(), ax.get_ylim3d(), ax.get_zlim3d()]
992+
)
991993
XYZlim = [min(xyzlim[0]), max(xyzlim[1])]
992994
ax.set_xlim3d(XYZlim)
993995
ax.set_ylim3d(XYZlim)

0 commit comments

Comments
 (0)
0