Skip to content

Commit

Permalink
Bump version to 2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
grantjenks committed Sep 3, 2018
1 parent f362cba commit 64dfae3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sortedcontainers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
]

__title__ = 'sortedcontainers'
__version__ = '2.0.4'
__build__ = 0x020004
__version__ = '2.0.5'
__build__ = 0x020005
__author__ = 'Grant Jenks'
__license__ = 'Apache 2.0'
__copyright__ = '2014-2018, Grant Jenks'
2 changes: 1 addition & 1 deletion sortedcontainers/sortedlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def __new__(cls, iterable=None, key=None):


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

0 comments on commit 64dfae3

Please sign in to comment.