Skip to content

Commit

Permalink
#1176 - don't limit --env to "dev" or "prod" (#1373)
Browse files Browse the repository at this point in the history
Co-authored-by: Itamar Hartstein <haritamar@gmail.com>
  • Loading branch information
willbowditch and haritamar committed May 28, 2024
1 parent ec9deeb commit d0e8cfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elementary/monitor/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ def decorator(func):
)(func)
func = click.option(
"--env",
type=click.Choice(["dev", "prod"]),
type=str,
default="dev",
help="This flag indicates if you are running Elementary in prod or dev environment and will be reflected accordingly in the report.",
help="This flag indicates which environment you are running Elementary in (e.g. dev or prod) and will be reflected accordingly in the report.",
)(func)
func = click.option(
"--config-dir",
Expand Down

0 comments on commit d0e8cfb

Please sign in to comment.