Skip to content

Commit

Permalink
update help string
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Dalton committed Dec 16, 2022
1 parent 22dd445 commit bf4734d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion careless/stats/ccanom.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self):
"--bins",
default=10,
type=int,
help=("Number of resolution bins to use, the default is 12."),
help=("Number of resolution bins to use, the default is 10."),
)

self.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion careless/stats/cchalf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self):
"--bins",
default=10,
type=int,
help=("Number of resolution bins to use, the default is 12."),
help=("Number of resolution bins to use, the default is 10."),
)

self.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion careless/stats/ccpred.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self):
"--bins",
default=10,
type=int,
help="Number of resolution bins to use, the default is 12.",
help="Number of resolution bins to use, the default is 10.",
)

self.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion careless/stats/completeness.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __init__(self):
"--bins",
default=10,
type=int,
help=("Number of resolution bins to use, the default is 12."),
help=("Number of resolution bins to use, the default is 10."),
)

self.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion careless/stats/rsplit.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self):
"--bins",
default=10,
type=int,
help=("Number of resolution bins to use, the default is 12."),
help=("Number of resolution bins to use, the default is 10."),
)

self.add_argument(
Expand Down

0 comments on commit bf4734d

Please sign in to comment.