From 616eb0f006fc31345d63221e0848a2121415c66a Mon Sep 17 00:00:00 2001 From: Wei Lee Date: Thu, 25 Jan 2024 18:50:14 +0800 Subject: [PATCH] style: fix mypy warning --- astronomer/providers/google/cloud/operators/bigquery.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/astronomer/providers/google/cloud/operators/bigquery.py b/astronomer/providers/google/cloud/operators/bigquery.py index 4ad33feef..0d9a130de 100644 --- a/astronomer/providers/google/cloud/operators/bigquery.py +++ b/astronomer/providers/google/cloud/operators/bigquery.py @@ -33,7 +33,8 @@ def __init__(self, *args: Any, **kwargs: Any) -> None: stacklevel=2, ) - super().__init__(*args, deferrable=True, **kwargs) + # https://github.com/python/mypy/issues/6799#issuecomment-1882059741 + super().__init__(*args, deferrable=True, **kwargs) # type: ignore[misc] class BigQueryCheckOperatorAsync(BigQueryCheckOperator):