Skip to content

Commit 64dfae3

Browse files
committed
Bump version to 2.0.5
1 parent f362cba commit 64dfae3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sortedcontainers/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767
]
6868

6969
__title__ = 'sortedcontainers'
70-
__version__ = '2.0.4'
71-
__build__ = 0x020004
70+
__version__ = '2.0.5'
71+
__build__ = 0x020005
7272
__author__ = 'Grant Jenks'
7373
__license__ = 'Apache 2.0'
7474
__copyright__ = '2014-2018, Grant Jenks'

sortedcontainers/sortedlist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def __new__(cls, iterable=None, key=None):
199199

200200

201201
@property
202-
def key(self):
202+
def key(self): # pylint: disable=useless-return
203203
"""Function used to extract comparison key from values.
204204
205205
Sorted list compares values directly so the key function is none.

0 commit comments

Comments
 (0)