From 23f59fedc45d1495654dd4f7fcda379dd89085b9 Mon Sep 17 00:00:00 2001 From: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com> Date: Fri, 13 Dec 2024 17:28:38 -0700 Subject: [PATCH] Import `os` in executor_loader (#44927) 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