From a097da64d99ede36719845011fd6d336e92e3786 Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Mon, 17 Sep 2018 10:17:59 +0200 Subject: [PATCH] Unbreak build re: mplot3d style. --- lib/mpl_toolkits/mplot3d/axes3d.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/mpl_toolkits/mplot3d/axes3d.py b/lib/mpl_toolkits/mplot3d/axes3d.py index 47751c7da657..d26fed20ebc4 100644 --- a/lib/mpl_toolkits/mplot3d/axes3d.py +++ b/lib/mpl_toolkits/mplot3d/axes3d.py @@ -1689,7 +1689,8 @@ def get_normals(polygons): if fcolors is not None: if shade: - colset = self._shade_colors(colset, get_normals(polys), lightsource) + colset = self._shade_colors( + colset, get_normals(polys), lightsource) polyc.set_facecolors(colset) polyc.set_edgecolors(colset) elif cmap: @@ -1702,7 +1703,8 @@ def get_normals(polygons): polyc.set_norm(norm) else: if shade: - colset = self._shade_colors(color, get_normals(polys), lightsource) + colset = self._shade_colors( + color, get_normals(polys), lightsource) else: colset = color polyc.set_facecolors(colset)