Skip to content

Commit

Permalink
Ruff format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanconn committed Oct 4, 2024
1 parent ddc66a5 commit ea27fea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mica/stats/update_guide_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,9 @@ def _get_obsids_to_update(check_missing=False, table_file=None, start=None, stop
try:
with tables.open_file(table_file, "r") as h5:
tbl = h5.get_node("/", "data")
last_tstart = tbl.cols.kalman_tstart[tbl.colindexes["kalman_tstart"][-1]]
last_tstart = tbl.cols.kalman_tstart[
tbl.colindexes["kalman_tstart"][-1]
]
except Exception:
last_tstart = start if start is not None else "2002:012:12:00:00"
kadi_obsids = events.obsids.filter(start=last_tstart, stop=stop)
Expand Down

0 comments on commit ea27fea

Please sign in to comment.