Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hsinfang committed Dec 4, 2024
1 parent 1b6dfb8 commit 9eaa086
Show file tree
Hide file tree
Showing 6 changed files with 210 additions and 148 deletions.
4 changes: 2 additions & 2 deletions src/move_embargo_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def parse_args():
)
parser.add_argument(
"--now",
default="now",
default=None,
type=str,
help=(
"Now time in (ISO, TAI timescale)."
Expand Down Expand Up @@ -362,7 +362,7 @@ def transfer_data_query(data_query):
if config.window is not None:
start_time = end_time - TimeDelta(config.window, format="quantity_str")
else:
start_time = Time(0)
start_time = Time(0, format="jd")
ok_timespan = Timespan(start_time, end_time)

for dataset_type in dataset_types:
Expand Down
Loading

0 comments on commit 9eaa086

Please sign in to comment.