From 92229417ce6df14f22fee7c042022bae1c306b25 Mon Sep 17 00:00:00 2001 From: Jed Cunningham Date: Fri, 13 Dec 2024 16:58:02 -0700 Subject: [PATCH] Import `os` in executor_loader That import was removed in #44839, but #44710 wasn't up-to-date with main so static checks there didn't fail. This simply adds it back. --- airflow/executors/executor_loader.py | 1 + 1 file changed, 1 insertion(+) diff --git a/airflow/executors/executor_loader.py b/airflow/executors/executor_loader.py index 9355fbb26a5ae..2651718bbad23 100644 --- a/airflow/executors/executor_loader.py +++ b/airflow/executors/executor_loader.py @@ -19,6 +19,7 @@ from __future__ import annotations import logging +import os from typing import TYPE_CHECKING from airflow.exceptions import AirflowConfigException, UnknownExecutorException