8000 Unbreak build re: mplot3d style. · matplotlib/matplotlib@a097da6 · GitHub
[go: up one dir, main page]

Skip to content

Commit a097da6

Browse files
committed
Unbreak build re: mplot3d style.
1 parent 82a4b24 commit a097da6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/mpl_toolkits/mplot3d/axes3d.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1689,7 +1689,8 @@ def get_normals(polygons):
16891689

16901690
if fcolors is not None:
16911691
if shade:
1692-
colset = self._shade_colors(colset, get_normals(polys), lightsource)
1692+
colset = self._shade_colors(
1693+
colset, get_normals(polys), lightsource)
16931694
polyc.set_facecolors(colset)
16941695
polyc.set_edgecolors(colset)
16951696
elif cmap:
@@ -1702,7 +1703,8 @@ def get_normals(polygons):
17021703
polyc.set_norm(norm)
17031704
else:
17041705
if shade:
1705-
colset = self._shade_colors(color, get_normals(polys), lightsource)
1706+
colset = self._shade_colors(
1707+
color, get_normals(polys), lightsource)
17061708
else:
17071709
colset = color
17081710
polyc.set_facecolors(colset)

0 commit comments

Comments
 (0)
0