Upgrade to latest isort (5.0.8) (#9782)

This commit is contained in:
Jarek Potiuk 2020-07-12 20:15:33 +02:00 коммит произвёл GitHub
Родитель 43cb059e96
Коммит d34404809f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -168,7 +168,7 @@ repos:
types: [yaml]
exclude: ^.*init_git_sync\.template\.yaml$|^.*airflow\.template\.yaml$|^chart/templates/.*\.yaml$
- repo: https://github.com/timothycrosley/isort
rev: 5.0.6
rev: 5.0.8
hooks:
- id: isort
name: Run isort to sort imports

Просмотреть файл

@ -31,11 +31,10 @@ from sqlalchemy.pool import NullPool
# noinspection PyUnresolvedReferences
from airflow import api
from airflow.logging_config import configure_logging
from airflow.utils.orm_event_handlers import setup_event_handlers
# pylint: disable=unused-import
from airflow.configuration import AIRFLOW_HOME, WEBSERVER_CONFIG, conf # NOQA F401
from airflow.logging_config import configure_logging
from airflow.utils.orm_event_handlers import setup_event_handlers
log = logging.getLogger(__name__)