Pep8 failures

This commit is contained in:
Hemna 2021-11-05 13:42:27 -04:00
parent 7d0006b0a6
commit 2ead6a97da
3 changed files with 2 additions and 1 deletions

View File

@ -94,6 +94,7 @@ def cli(ctx, loglevel, config_file, quiet):
ctx.obj["config"] = aprsd_config.parse_config(config_file)
setup_logging(ctx.obj["config"], loglevel, quiet)
def main():
from .cmds import completion, dev, listen, send_message, server # noqa
cli()

View File

@ -6,6 +6,7 @@ from ..aprsd import cli
CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"])
@cli.group(help="Click Completion subcommands", context_settings=CONTEXT_SETTINGS)
@click.pass_context
def completion(ctx):

View File

@ -116,4 +116,3 @@ def server(ctx, flush):
# If there are items in the msgTracker, then save them
LOG.info("APRSD Exiting.")
return 0
import logging