Skip to content

Commit

Permalink
Merge pull request OpenMDAO#521 from OpenMDAO/crecine-patch-1
Browse files Browse the repository at this point in the history
Update dashboard.py
  • Loading branch information
crecine authored Sep 7, 2024
2 parents 29ad092 + d198234 commit e0c09cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion aviary/visualization/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def _dashboard_setup_parser(parser):
parser.add_argument(
"-b",
"--background",
action="store_true",
dest="run_in_background",
help="Run the server in the background (don't automatically open the browser)",
)
Expand Down Expand Up @@ -184,7 +185,7 @@ def _dashboard_cmd(options, user_args):
options.problem_recorder,
options.driver_recorder,
options.port,
options.run_in_background
options.run_in_background,
)
return

Expand All @@ -203,6 +204,7 @@ def _dashboard_cmd(options, user_args):
options.problem_recorder,
options.driver_recorder,
options.port,
options.run_in_background,
)


Expand Down

0 comments on commit e0c09cc

Please sign in to comment.