Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Jun 23, 2024
1 parent 4e876ae commit b7dc563
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ogcore/TPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -1325,9 +1325,7 @@ def run_TPI(p, client=None):
"Transition path equlibrium not found" + " (TPIdist)"
)

if (
np.any(np.absolute(RC_error) >= p.RC_TPI)
) and ENFORCE_SOLUTION_CHECKS:
if (np.any(np.absolute(RC_error) >= p.RC_TPI)) and ENFORCE_SOLUTION_CHECKS:
raise RuntimeError(
"Transition path equlibrium not found " + "(RC_error)"
)
Expand Down

0 comments on commit b7dc563

Please sign in to comment.