File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6767]
6868
6969__title__ = 'sortedcontainers'
70- __version__ = '2.0.3 '
71- __build__ = 0x020003
70+ __version__ = '2.0.4 '
71+ __build__ = 0x020004
7272__author__ = 'Grant Jenks'
7373__license__ = 'Apache 2.0'
7474__copyright__ = '2014-2018, Grant Jenks'
Original file line number Diff line number Diff line change @@ -360,11 +360,13 @@ def values(self):
360360
361361 if sys .hexversion < 0x03000000 :
362362 def __make_raise_attributeerror (original , alternate ):
363+ # pylint: disable=no-self-argument
363364 message = (
364365 'SortedDict.{original}() is not implemented.'
365366 ' Use SortedDict.{alternate}() instead.'
366367 ).format (original = original , alternate = alternate )
367368 def method (self ):
369+ # pylint: disable=missing-docstring,unused-argument
368370 raise AttributeError (message )
369371 method .__name__ = original
370372 method .__doc__ = message
You can’t perform that action at this time.
0 commit comments