diff --git a/providers/src/airflow/providers/http/hooks/http.py b/providers/src/airflow/providers/http/hooks/http.py index c96220e504863..1afd1396874cd 100644 --- a/providers/src/airflow/providers/http/hooks/http.py +++ b/providers/src/airflow/providers/http/hooks/http.py @@ -457,8 +457,8 @@ async def run( await asyncio.sleep(self.retry_delay) else: return response - else: - raise NotImplementedError # should not reach this, but makes mypy happy + + raise NotImplementedError # should not reach this, but makes mypy happy @classmethod def _process_extra_options_from_connection(cls, conn: Connection, extra_options: dict) -> dict: