Skip to content

Commit

Permalink
πŸ“ Added missing docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafalz13 committed Apr 9, 2024
1 parent c47c120 commit 0fe6897
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion viadot/tasks/luma.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(
self,
metadata_dir_path: str,
url: str = None,
dbt_project_path: str = None,
dbt_project_path: str = "tmp_dbt_repo_dir",
credentials_secret: str = None,
vault_name: str = None,
*args,
Expand All @@ -26,6 +26,8 @@ def __init__(
In the case of dbt, it's dbt project's `target` directory, which contains dbt artifacts
(`sources.json`, `catalog.json`, `manifest.json`, and `run_results.json`).
url (str, optional): The url of the Luma ingestion API. Defaults to None.
dbt_project_path (str, optional): The path to the dbt project (the directory containing
the `dbt_project.yml` file). Defaults to 'tmp_dbt_repo_dir'.
credentials_secret (str, optional): The name of the Azure Key Vault secret containing Luma credentials.
Defaults to None.
vault_name (str, optional): The name of the vault from which to obtain the secrets. Defaults to None.
Expand Down

0 comments on commit 0fe6897

Please sign in to comment.