Fix linter and dependency issues

This commit is contained in:
Carlos Felix 2024-11-19 15:01:27 -05:00 committed by Carlos Felix
commit 3e087a37a4
7 changed files with 619 additions and 730 deletions

View file

@ -58,6 +58,7 @@ data_source_option = click.option(
help=dataset_cli_help,
)
@click.group()
def cli():
"""Defines a click group for the commands below"""
@ -415,6 +416,7 @@ def clear_data_source_cache(dataset: str):
log_goodbye()
@cli.command(
help="Generate scoring and tiles",
)
@ -441,6 +443,7 @@ def full_run(ctx, use_cache):
ctx.invoke(etl_run, dataset=None, use_cache=use_cache)
ctx.invoke(full_post_etl)
def log_title(title: str, subtitle: str = None):
"""Logs a title in our fancy title format"""
logger.info("-" * LOG_LINE_WIDTH)