Skip to content

Commit

Permalink
Resolving EMR notebook deprecated warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dirrao committed May 25, 2024
1 parent 6b0cd47 commit 024cd60
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions airflow/providers/amazon/aws/operators/emr.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,8 @@ def __init__(
wait_for_completion: bool = False,
aws_conn_id: str | None = "aws_default",
# TODO: waiter_max_attempts and waiter_delay should default to None when the other two are deprecated.
waiter_max_attempts: int | None | ArgNotSet = NOTSET,
waiter_delay: int | None | ArgNotSet = NOTSET,
waiter_max_attempts: int | None = None,
waiter_delay: int | None = None,
waiter_countdown: int | None = None,
waiter_check_interval_seconds: int | None = None,
**kwargs: Any,
Expand Down Expand Up @@ -391,8 +391,8 @@ def __init__(
wait_for_completion: bool = False,
aws_conn_id: str | None = "aws_default",
# TODO: waiter_max_attempts and waiter_delay should default to None when the other two are deprecated.
waiter_max_attempts: int | None | ArgNotSet = NOTSET,
waiter_delay: int | None | ArgNotSet = NOTSET,
waiter_max_attempts: int | None = None,
waiter_delay: int | None = None,
waiter_countdown: int | None = None,
waiter_check_interval_seconds: int | None = None,
**kwargs: Any,
Expand Down

0 comments on commit 024cd60

Please # to comment.