Skip to content

Commit a268fc7

Browse files
committed
Fix merge issue
1 parent 92daa11 commit a268fc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mpl_toolkits/mplot3d/art3d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def path_to_3d_segment_with_codes(path, zs=0, zdir='z'):
219219
"""
220220
zs = np.broadcast_to(zs, len(path))
221221

222-
, pathsegs = path.iter_segments(simplify=False, curves=False)
222+
pathsegs = path.iter_segments(simplify=False, curves=False)
223223
if len(path):
224224
xs, ys, codes = zip(*((x, y, code) for (x, y), code in pathsegs))
225225
else:

0 commit comments

Comments
 (0)