fix(import): only import FORMULA annotations (#26652)

This commit is contained in:
Maxime Beauchemin
2024-01-19 15:13:18 -08:00
committed by GitHub
parent 1283803844
commit e86d4d3c92
6 changed files with 83 additions and 5 deletions

View File

@@ -130,12 +130,13 @@ def export_datasources(datasource_file: Optional[str] = None) -> None:
@click.option(
"--path",
"-p",
required=True,
help="Path to a single ZIP file",
)
@click.option(
"--username",
"-u",
default=None,
required=True,
help="Specify the user name to assign dashboards to",
)
def import_dashboards(path: str, username: Optional[str]) -> None: