Skip to content

Commit

Permalink
Fix the order of the import declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
krysal committed Jan 26, 2024
1 parent b0c56b6 commit b76b0e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catalog/dags/database/catalog_cleaner/catalog_cleaner.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from airflow.operators.python import PythonOperator

from common.constants import DAG_DEFAULT_ARGS, POSTGRES_CONN_ID
from common.sql import PGExecuteQueryOperator, PostgresHook, RETURN_ROW_COUNT
from common.sql import RETURN_ROW_COUNT, PGExecuteQueryOperator, PostgresHook


logger = logging.getLogger(__name__)
Expand Down

0 comments on commit b76b0e9

Please sign in to comment.