Skip to content

Commit

Permalink
forgot verbose param
Browse files Browse the repository at this point in the history
  • Loading branch information
FusRoman committed Nov 28, 2023
1 parent 2bbbc29 commit 8d5b53e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/fink_fat_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,8 @@ def fink_fat_main(arguments):
int(config["SOLVE_ORBIT_PARAMS"]["cpu_count"]),
config["SOLVE_ORBIT_PARAMS"]["ram_dir"],
int(config["SOLVE_ORBIT_PARAMS"]["n_triplets"]),
int(config["SOLVE_ORBIT_PARAMS"]["noise_ntrials"])
int(config["SOLVE_ORBIT_PARAMS"]["noise_ntrials"]),
verbose=int(config["SOLVE_ORBIT_PARAMS"]["orbfit_verbose"])
).drop("provisional designation", axis=1)
orbfit_time = t.time() - t_before

Expand Down Expand Up @@ -1162,7 +1163,8 @@ def fink_fat_main(arguments):
int(config["SOLVE_ORBIT_PARAMS"]["cpu_count"]),
config["SOLVE_ORBIT_PARAMS"]["ram_dir"],
int(config["SOLVE_ORBIT_PARAMS"]["n_triplets"]),
int(config["SOLVE_ORBIT_PARAMS"]["noise_ntrials"])
int(config["SOLVE_ORBIT_PARAMS"]["noise_ntrials"]),
verbose=int(config["SOLVE_ORBIT_PARAMS"]["orbfit_verbose"])
).drop("provisional designation", axis=1)
orbfit_time = t.time() - t_before

Expand Down

0 comments on commit 8d5b53e

Please sign in to comment.