From 4b943fda5933fcdcce114d24d4b923826cbc5cf0 Mon Sep 17 00:00:00 2001 From: Jed Cunningham Date: Tue, 26 Sep 2023 18:44:25 -0600 Subject: [PATCH] Don't run isort when creating new alembic migrations We can let pre-commit do its thing instead of running specific static-check type things explicity. There are a number of things that could mutate the file before it's ready ultimately. --- airflow/alembic.ini | 6 ------ 1 file changed, 6 deletions(-) diff --git a/airflow/alembic.ini b/airflow/alembic.ini index e16f51979f148..988fa234ee7df 100644 --- a/airflow/alembic.ini +++ b/airflow/alembic.ini @@ -83,9 +83,3 @@ formatter = generic [formatter_generic] format = %(levelname)-5.5s [%(name)s] %(message)s datefmt = %H:%M:%S - -[post_write_hooks] -hooks=isort - -isort.type=console_scripts -isort.entrypoint=isort