refactor(ingest): resolve click-default-group deprecation warning (#3427)

This commit is contained in:
Harshal Sheth 2021-10-21 01:46:48 -04:00 committed by GitHub
parent 974f8fa91c
commit a121aff6eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,13 +26,13 @@ RUNS_TABLE_COLUMNS = ["runId", "rows", "created at"]
RUN_TABLE_COLUMNS = ["urn", "aspect name", "created at"]
@click.group(cls=DefaultGroup)
@click.group(cls=DefaultGroup, default="run")
def ingest() -> None:
"""Ingest metadata into DataHub."""
pass
@ingest.command(default=True)
@ingest.command()
@click.option(
"-c",
"--config",