Skip to content

Commit

Permalink
fix mypy failure
Browse files Browse the repository at this point in the history
  • Loading branch information
rawwar committed Oct 21, 2024
1 parent 04368b7 commit 292db52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/src/airflow/providers/common/sql/sensors/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(
parameters: Mapping[str, Any] | None = None,
success: Callable[[Any], bool] | None = None,
failure: Callable[[Any], bool] | None = None,
selector: Callable[[tuple[Any]], Any] | None = itemgetter(0),
selector: Callable[[tuple[Any]], Any] = itemgetter(0),
fail_on_empty: bool = False,
hook_params: Mapping[str, Any] | None = None,
**kwargs,
Expand Down

0 comments on commit 292db52

Please sign in to comment.