From 305c57ccc4e5d3972ca6873d38b250c524f955e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20G=C3=BCnther?= Date: Tue, 29 Jun 2021 17:25:40 +0200 Subject: [PATCH] Fix `isort`'s configuration For some reason, `isort` treats a standalone import `from airflow` as a first party import. Since `airflow` is a third party library, `isort` has to be told to put these imports into the appropriate section. --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 53c543ec9..9ab69ba91 100644 --- a/setup.cfg +++ b/setup.cfg @@ -58,6 +58,7 @@ profile = black from_first = True line_length = 79 known_first_party = egon, egon.data +known_third_party = airflow default_section = THIRDPARTY skip = .tox,.eggs,ci/bootstrap.py,ci/templates,build,dist