File tree 2 files changed +1
-12
lines changed 2 files changed +1
-12
lines changed Original file line number Diff line number Diff line change 6
6
Module containing 3D artist code and functions to convert 2D
7
7
artists into 3D versions which can be added to an Axes3D.
8
8
"""
9
- from __future__ import (absolute_import , division , print_function ,
10
- unicode_literals )
11
-
12
- import six
13
- from six .moves import zip
14
9
15
10
import math
16
11
@@ -225,12 +220,6 @@ class Line3DCollection(LineCollection):
225
220
A collection of 3D lines.
226
221
"""
227
222
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
-
234
223
def set_sort_zpos (self , val ):
235
224
"""Set the position to use for z-sorting."""
236
225
self ._sort_zpos = val
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ pep8ignore =
87
87
mpl_toolkits/axisartist/floating_axes.py E201 E225 E231 E261 E262 E271 E302 E303 E402 E501
88
88
mpl_toolkits/axisartist/grid_finder.py E231 E261 E302 E303 E402
89
89
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
91
91
mpl_toolkits/mplot3d/axes3d.py E203 E225 E231 E271 E303 E402 E501 E502 E701
92
92
mpl_toolkits/mplot3d/axis3d.py E201 E202 E203 E222 E231 E302 E303 E502
93
93
mpl_toolkits/mplot3d/proj3d.py E231 E302 E303
You can’t perform that action at this time.
0 commit comments