Skip to content

Commit

Permalink
Fix thinko
Browse files Browse the repository at this point in the history
  • Loading branch information
titodalcanton committed Dec 4, 2024
1 parent c26caa0 commit b1061ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bin/pycbc_multi_inspiral
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,13 @@ parser.add_argument(
"--ra",
type=angle_as_radians,
help="Right ascension of a single sky point to search. Use the rad or deg "
"prefix to specify units, otherwise radians are assumed."
"suffix to specify units, otherwise radians are assumed."
)
parser.add_argument(
"--dec",
type=angle_as_radians,
help="Declination of a single sky point to search. Use the rad or deg "
"prefix to specify units, otherwise radians are assumed."
"suffix to specify units, otherwise radians are assumed."
)
parser.add_argument(
"--sky-grid",
Expand Down
6 changes: 3 additions & 3 deletions bin/pygrb/pycbc_pygrb_grb_info_table
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ parser.add_argument("--trigger-time", type=int,
parser.add_argument("--ra", type=angle_as_radians,
required=True,
help="Right ascension of the GRB. Use the rad or deg "
"prefix to specify units, otherwise radians are assumed.")
"suffix to specify units, otherwise radians are assumed.")
parser.add_argument("--dec", type=angle_as_radians,
required=True,
help="Declination of the GRB. Use the rad or deg prefix "
help="Declination of the GRB. Use the rad or deg suffix "
"to specify units, otherwise radians are assumed.")
parser.add_argument("--sky-error", type=angle_as_radians,
default=0,
help="Sky-localisation error of the GRB. Use the rad or "
"deg prefix to specify units, otherwise radians are assumed.")
"deg suffix to specify units, otherwise radians are assumed.")
parser.add_argument("--ifos", action="store", nargs='+',
default=None, required=True,
help="List containing the active IFOs.")
Expand Down

0 comments on commit b1061ef

Please sign in to comment.