Trim trailing whitespace from python code.

This commit is contained in:
Don Cross
2019-06-22 21:15:54 -04:00
parent 00dad8be32
commit e37d7e90f0
3 changed files with 3 additions and 3 deletions

View File

@@ -225,7 +225,7 @@ def _DeltaT(mjd):
if mjd <= _DT[0].mjd:
return _DT[0].dt
if mjd >= _DT[-1].mjd:
return _DT[-1].dt
return _DT[-1].dt
# Do a binary search to find the pair of indexes this mjd lies between.
lo = 0
hi = len(_DT) - 2 # Make sure there is always an array element after the one we are looking at.