Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Pre-commit hook fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
davidschrooten committed May 8, 2023
1 parent 0442d7e commit 462dec0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion prefect_gcp/bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
from functools import partial
from pathlib import Path
from typing import Any, Dict, List, Optional, Tuple, Union, Callable
from typing import Any, Callable, Dict, List, Optional, Tuple, Union

from anyio import to_thread
from prefect import get_run_logger, task
Expand Down
4 changes: 3 additions & 1 deletion tests/test_bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
@pytest.mark.parametrize("to_dataframe", [False, True])
@pytest.mark.parametrize("result_transformer", [None, lambda _: ("test_transformer",)])
@pytest.mark.parametrize("dry_run_max_bytes", [None, 5, 15])
def test_bigquery_query(to_dataframe, result_transformer, dry_run_max_bytes, gcp_credentials):
def test_bigquery_query(
to_dataframe, result_transformer, dry_run_max_bytes, gcp_credentials
):
@flow
def test_flow():
return bigquery_query(
Expand Down

0 comments on commit 462dec0

Please sign in to comment.