Skip to content

Commit

Permalink
beat: set default of stage_number to -1
Browse files Browse the repository at this point in the history
  • Loading branch information
hvasbath committed Mar 15, 2024
1 parent 043a208 commit d4a9ff1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions beat/apps/beat.py
Original file line number Diff line number Diff line change
Expand Up @@ -1109,9 +1109,9 @@ def setup(parser):
"--stage_number",
dest="stage_number",
type="int",
default=None,
default=-1,
help='Int of the stage number "n" of the stage to be summarized.'
" Default: all stages up to last complete stage",
" Default: -1, i.e. posterior probability density",
)

parser, options, args = cl_parse(command_str, args, setup=setup)
Expand Down Expand Up @@ -1762,9 +1762,9 @@ def setup(parser):
"--stage_number",
dest="stage_number",
type="int",
default=None,
default=-1,
help='Int of the stage number "n" of the stage to be plotted.'
" Default: all stages up to last complete stage",
" Default: -1, i.e. the posterior probability density",
)

parser.add_option(
Expand Down Expand Up @@ -2263,7 +2263,7 @@ def setup(parser):
type="int",
default=-1,
help='Int of the stage number "n" of the stage to be summarized.'
" Default: all stages up to last complete stage",
" Default: -1, i.e. the posterior probability density",
)

parser.add_option(
Expand Down

0 comments on commit d4a9ff1

Please sign in to comment.