Skip to content

Commit

Permalink
fix: raise from None in one case (#83)
Browse files Browse the repository at this point in the history
* Changed version number to non-rc

* fixed flake-8 issues

* One more rc release...

Co-authored-by: Aryan Roy <aryanroy5678@gmail.com>
  • Loading branch information
jpivarski and aryan26roy authored Oct 17, 2022
1 parent c89c7a6 commit 6b42ea0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/fastjet/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def join(*argv):
if len(argv) == 4:
return fastjet._swig.join(argv[0], argv[1], argv[2], argv[3])
if len(argv) > 4:
raise ValueError("Length exceeded")
raise ValueError("Length exceeded") from None


def dot_product(a, b):
Expand Down
2 changes: 1 addition & 1 deletion src/fastjet/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import re

__version__ = "3.3.4.0rc9"
__version__ = "3.3.4.0rc10"
version = __version__
version_info = tuple(re.split(r"[-\.]", __version__))

Expand Down

0 comments on commit 6b42ea0

Please sign in to comment.