Skip to content

Commit

Permalink
ruff fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
javierggt committed Sep 13, 2024
1 parent 94a9ee0 commit 9e9e593
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions acq_stat_reports/acq_stat_reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from astropy import units as u
from astropy.table import Table, join
from chandra_aca.star_probs import acq_success_prob, binomial_confidence_interval
from cxotime import CxoTime, units as u
from cxotime import CxoTime
from ska_helpers import logging

from acq_stat_reports import utils
Expand Down Expand Up @@ -464,7 +464,9 @@ def main():
to_update = ska_report_ranges.get_update_ranges(args.days_back)
else:
start = CxoTime(args.start_time)
to_update = ska_report_ranges.get_update_ranges(int((now - start).to(u.day).value))
to_update = ska_report_ranges.get_update_ranges(
int((now - start).to(u.day).value)
)

all_acq = get_data()

Expand Down

0 comments on commit 9e9e593

Please sign in to comment.