From 05abb3bd428be76278ac74bcf78a783853905e5d Mon Sep 17 00:00:00 2001 From: ferruzzi Date: Tue, 4 Jan 2022 13:59:58 -0800 Subject: [PATCH] Corrected Protocol inheritance --- airflow/providers/amazon/aws/hooks/batch_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/providers/amazon/aws/hooks/batch_client.py b/airflow/providers/amazon/aws/hooks/batch_client.py index 793357ae5d37d..d22bd2aaea9ee 100644 --- a/airflow/providers/amazon/aws/hooks/batch_client.py +++ b/airflow/providers/amazon/aws/hooks/batch_client.py @@ -540,7 +540,7 @@ def exp(tries): return uniform(delay / 3, delay) -class AwsBatchProtocol(BatchProtocol, Protocol): +class AwsBatchProtocol(BatchProtocol): """ This class is deprecated. Please use :class:`airflow.providers.amazon.aws.hooks.batch.BatchProtocol`.