Skip to content

Commit

Permalink
Fix isort's configuration
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
gnn committed Jun 29, 2021
1 parent 9ffa8e3 commit 305c57c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 305c57c

Please sign in to comment.