Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
gwf committed Oct 11, 2023
1 parent 5151811 commit 45a376e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion random_permutation/permutation.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def __getitem__(self, index):
index = self._feistel(index)
if index < self.max:
return index
elif isinstance(index, slice):
if isinstance(index, slice):
return self.__getslice__(index)
raise TypeError("Invalid index.")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='random_permutation',
version='0.1.14',
version='0.1.15',
author='Gary William Flake',
author_email='[email protected]',
description=
Expand Down

0 comments on commit 45a376e

Please sign in to comment.