Принесен isort

This commit is contained in:
2025-12-10 18:49:49 +03:00
parent c865fa282e
commit 7a9b2d182e
5 changed files with 11 additions and 4 deletions
+2 -1
View File
@@ -7,9 +7,10 @@ from __future__ import annotations
from datetime import datetime, timedelta
from airflow import DAG
from airflow.providers.postgres.operators.postgres import PostgresOperator
from airflow import DAG
GREENPLUM_CONN_ID = "greenplum_conn"
default_args = {"owner": "airflow", "retries": 1, "retry_delay": timedelta(seconds=30)}
+1 -1
View File
@@ -12,10 +12,10 @@ from __future__ import annotations
from datetime import datetime, timedelta
from airflow import DAG
from airflow.operators.python import PythonOperator
from airflow.providers.postgres.operators.postgres import PostgresOperator
from airflow import DAG
default_args = {
"owner": "airflow",
+2 -1
View File
@@ -3,7 +3,6 @@ from __future__ import annotations
import logging
from datetime import datetime, timedelta
from airflow import DAG
from airflow.operators.python import PythonOperator
from helpers.greenplum import (
assert_orders_have_rows,
@@ -13,6 +12,8 @@ from helpers.greenplum import (
get_gp_conn,
)
from airflow import DAG
def _run_check(check_callable):
"""
+2 -1
View File
@@ -7,9 +7,10 @@ from __future__ import annotations
from datetime import datetime, timedelta
from airflow import DAG
from airflow.providers.postgres.operators.postgres import PostgresOperator
from airflow import DAG
GREENPLUM_CONN_ID = "greenplum_conn"
default_args = {"owner": "airflow", "retries": 1, "retry_delay": timedelta(seconds=30)}
+4
View File
@@ -14,3 +14,7 @@ dev = [
"psycopg2-binary==2.9.9",
"pytest==7.4.4",
]
[tool.isort]
profile = "black"
src_paths = ["airflow", "tests"]