diff --git a/airflow/providers/microsoft/azure/triggers/msgraph.py b/airflow/providers/microsoft/azure/triggers/msgraph.py index 130ffa71567..111ff808993 100644 --- a/airflow/providers/microsoft/azure/triggers/msgraph.py +++ b/airflow/providers/microsoft/azure/triggers/msgraph.py @@ -88,12 +88,6 @@ def deserialize(self, response) -> Any: class CallableResponseHandler(ResponseHandler): - """ - CallableResponseHandler executes the passed callable_function with response as parameter. - - :param callable_function: Function which allows you to handle the response before returning. - """ - def __init__( self, callable_function: Callable[[NativeResponseType, dict[str, ParsableFactory | None] | None], Any],