Skip to content

Commit

Permalink
style: improve type annotation
Browse files Browse the repository at this point in the history
Co-authored-by: Pankaj Koti <[email protected]>
  • Loading branch information
Lee-W and pankajkoti authored Jan 24, 2024
1 parent 2607641 commit 521d801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion astronomer/providers/google/cloud/operators/dataproc.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ class DataprocSubmitJobOperatorAsync(DataprocSubmitJobOperator):
and set `deferrable` param to `True` instead.
"""

def __init__(self, *args, **kwargs): # type: ignore[no-untyped-def]
def __init__(self, *args: Any, **kwargs: Any):
warnings.warn(
(
"This module is deprecated. "
Expand Down

0 comments on commit 521d801

Please sign in to comment.