From d976af909fb7f280087c22c8592c08c1c1a14150 Mon Sep 17 00:00:00 2001 From: Walter Baccinelli Date: Thu, 27 Jun 2024 14:09:51 +0200 Subject: [PATCH] linting --- cli/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/cli.py b/cli/cli.py index b853a9b..00ab2f9 100644 --- a/cli/cli.py +++ b/cli/cli.py @@ -1,11 +1,12 @@ 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()) @@ -13,7 +14,6 @@ def cli(ctx): @cli.command(name="run", help="Start the dashboard.") def run(): """Start the dashboard.""" - app.run_server(debug=False)