Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
wbaccinelli committed Jun 27, 2024
1 parent 8137afb commit d976af9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/cli.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import click

from eit_dash.app import app


@click.group(invoke_without_command=True)
@click.pass_context
def cli(ctx):
"""Default prompt. It shows the help command"""
"""Default prompt. It shows the help command."""
if ctx.invoked_subcommand is None:
click.echo(ctx.get_help())


@cli.command(name="run", help="Start the dashboard.")
def run():
"""Start the dashboard."""

app.run_server(debug=False)


Expand Down

0 comments on commit d976af9

Please sign in to comment.