Skip to content

Commit

Permalink
refactor(dbt): make all arguments in _run_and_get_response keyword on…
Browse files Browse the repository at this point in the history
…ly argument
  • Loading branch information
Lee-W committed Apr 29, 2024
1 parent 09e2b0d commit 4505593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/providers/dbt/cloud/hooks/dbt.py
Expand Up @@ -298,11 +298,11 @@ def _paginate(self, endpoint: str, payload: dict[str, Any] | None = None) -> lis

def _run_and_get_response(
self,
*,
method: str = "GET",
endpoint: str | None = None,
payload: str | dict[str, Any] | None = None,
paginate: bool = False,
*,
api_version: str = "v2",
) -> Any:
self.method = method
Expand Down

0 comments on commit 4505593

Please sign in to comment.