Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 17447c2

Browse files
authored
Merge pull request #11106 from anntzer/py3art3d
py3fy art3d.
2 parents 0241d70 + 64520ca commit 17447c2

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

lib/mpl_toolkits/mplot3d/art3d.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@
66
Module containing 3D artist code and functions to convert 2D
77
artists into 3D versions which can be added to an Axes3D.
88
"""
9-
from __future__ import (absolute_import, division, print_function,
10-
unicode_literals)
11-
12-
import six
13-
from six.moves import zip
149

1510
import math
1611

@@ -225,12 +220,6 @@ class Line3DCollection(LineCollection):
225220
A collection of 3D lines.
226221
"""
227222

228-
def __init__(self, segments, *args, **kwargs):
229-
"""
230-
Keyword arguments are passed onto :func:`~matplotlib.collections.LineCollection`.
231-
"""
232-
LineCollection.__init__(self, segments, *args, **kwargs)
233-
234223
def set_sort_zpos(self, val):
235224
"""Set the position to use for z-sorting."""
236225
self._sort_zpos = val

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ pep8ignore =
8787
mpl_toolkits/axisartist/floating_axes.py E201 E225 E231 E261 E262 E271 E302 E303 E402 E501
8888
mpl_toolkits/axisartist/grid_finder.py E231 E261 E302 E303 E402
8989
mpl_toolkits/axisartist/grid_helper_curvelinear.py E221 E225 E231 E251 E261 E262 E271 E302 E303 E501
90-
mpl_toolkits/mplot3d/art3d.py E203 E222 E225 E231 E501
90+
mpl_toolkits/mplot3d/art3d.py E203 E222 E225 E231
9191
mpl_toolkits/mplot3d/axes3d.py E203 E225 E231 E271 E303 E402 E501 E502 E701
9292
mpl_toolkits/mplot3d/axis3d.py E201 E202 E203 E222 E231 E302 E303 E502
9393
mpl_toolkits/mplot3d/proj3d.py E231 E302 E303

0 commit comments

Comments
 (0)