Skip to content

Commit

Permalink
fix click command option
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpetrovic committed Jan 19, 2024
1 parent 6106e1a commit d3440f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/src/beam/cli/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
@click.command()
@click.option("--name", default=None)
@click.option("--token", default=None)
@click.option("--gateway_host", default=None)
@click.option("--gateway_port", default=None)
@click.option("--gateway-host", default=None)
@click.option("--gateway-port", default=None)
def configure(name: str, token: str, gateway_host: str, gateway_port: str):
config = load_config_from_file()

Expand Down

0 comments on commit d3440f2

Please sign in to comment.