Skip to content

Commit 7175d39

Browse files
committed
codespell fixes
1 parent a50d54d commit 7175d39

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ repos:
3333
rev: "v2.3.0"
3434
hooks:
3535
- id: codespell
36-
args: ["-L", "thisE,thise,mye,tE,te,hist,ro,sav,ccompiler,aas",
36+
args: ["-L", "thisE,thise,mye,tE,te,hist,ro,sav,ccompiler,aas,floatIn,dOmin",
3737
"-x","doc/source/_static/try-galpy.js"]
3838
- repo: https://github.com/astral-sh/ruff-pre-commit
3939
rev: v0.4.7

galpy/util/leung_dop853.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def hinit(func, x, t, pos_neg, f0, iord, hmax, rtol, atol, args):
241241

242242
def dense_output(t_current, t_old, h_current, rcont):
243243
"""
244-
Dense output function, basically extrapolatin
244+
Dense output function, basically extrapolating
245245
"""
246246
# initialization
247247
s = (t_current - t_old) / h_current

tests/test_quantity.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2253,7 +2253,7 @@ def test_integrate_SOS_psiQuantity():
22532253
), "Orbit SOS integrated with psis specified as Quantity does not agree with Orbit integrated with time specified as array"
22542254
assert numpy.all(
22552255
numpy.fabs(o.z(o.t) - oc.z(oc.t)).value < 10.0**-8.0
2256-
), "Orbit SOS ntegrated with psis specified as Quantity does not agree with Orbit integrated with time specified as array"
2256+
), "Orbit SOS integrated with psis specified as Quantity does not agree with Orbit integrated with time specified as array"
22572257
assert numpy.all(
22582258
numpy.fabs(o.vx(o.t) - oc.vx(oc.t)).value < 10.0**-8.0
22592259
), "Orbit SOS integrated with psis specified as Quantity does not agree with Orbit integrated with time specified as array"

0 commit comments

Comments
 (0)