Skip to content

Commit

Permalink
Merge pull request #128 from satellogic/fix_exception_message
Browse files Browse the repository at this point in the history
just fix exception message when ecc > 1
  • Loading branch information
fisadev authored Mar 15, 2023
2 parents 686af07 + 25526a2 commit 8d93119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orbit_predictor/predictors/keplerian.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __init__(self, sma, ecc, inc, raan, argp, ta, epoch):
:param epoch: Epoch, datetime
"""
if ecc >= 1.0:
raise NotImplementedError("Parabolic and elliptic orbits "
raise NotImplementedError("Parabolic and hyperbolic orbits "
"are not implemented")
self._sma = sma
self._ecc = ecc
Expand Down

0 comments on commit 8d93119

Please sign in to comment.