Skip to content

Commit

Permalink
style: fix mypy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee-W committed Jan 25, 2024
1 parent 0885926 commit 7f703cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion astronomer/providers/google/cloud/operators/bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 7f703cb

Please sign in to comment.