Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
chowbao committed Oct 7, 2024
1 parent 31b887d commit 15ee527
Show file tree
Hide file tree
Showing 12 changed files with 5 additions and 15 deletions.
9 changes: 5 additions & 4 deletions dags/generate_avro_files_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
from airflow import DAG
from kubernetes.client import models as k8s
from stellar_etl_airflow.build_cross_dependency_task import build_cross_deps
from stellar_etl_airflow.build_bq_generate_avro_job_task import build_bq_generate_avro_job
from stellar_etl_airflow.build_bq_generate_avro_job_task import (
build_bq_generate_avro_job
)
from stellar_etl_airflow.default import (
alert_sla_miss,
get_default_dag_args,
Expand Down Expand Up @@ -45,8 +47,8 @@
"offers",
"trust_lines",
"ttl",
#"history_effects",
#"history_operations",
# "history_effects",
# "history_operations",
]

for table in avro_tables:
Expand All @@ -60,4 +62,3 @@

wait_on_history_table >> task
wait_on_state_table >> task

1 change: 0 additions & 1 deletion dags/queries/generate_avro/contract_data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ as (
and closed_at < '{next_batch_run_date}'
order by closed_at asc
)

1 change: 0 additions & 1 deletion dags/queries/generate_avro/history_contract_events.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ as (
and closed_at < '{next_batch_run_date}'
order by closed_at asc
)

1 change: 0 additions & 1 deletion dags/queries/generate_avro/history_effects.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@ as (
and closed_at < '{next_batch_run_date}'
order by closed_at asc
)

1 change: 0 additions & 1 deletion dags/queries/generate_avro/history_ledgers.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ as (
and closed_at < '{next_batch_run_date}'
order by closed_at asc
)

1 change: 0 additions & 1 deletion dags/queries/generate_avro/history_operations.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,3 @@ as (
and closed_at < '{next_batch_run_date}'
order by closed_at asc
)

1 change: 0 additions & 1 deletion dags/queries/generate_avro/history_trades.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,3 @@ as (
and closed_at < '{next_batch_run_date}'
order by closed_at asc
)

1 change: 0 additions & 1 deletion dags/queries/generate_avro/history_transactions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ as (
and closed_at < '{next_batch_run_date}'
order by closed_at asc
)

1 change: 0 additions & 1 deletion dags/queries/generate_avro/liquidity_pools.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ as (
and closed_at < '{next_batch_run_date}'
order by closed_at asc
)

1 change: 0 additions & 1 deletion dags/queries/generate_avro/offers.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ as (
and closed_at < '{next_batch_run_date}'
order by closed_at asc
)

1 change: 0 additions & 1 deletion dags/queries/generate_avro/trust_lines.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ as (
and closed_at < '{next_batch_run_date}'
order by closed_at asc
)

1 change: 0 additions & 1 deletion dags/queries/generate_avro/ttl.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ as (
and closed_at < '{next_batch_run_date}'
order by closed_at asc
)

0 comments on commit 15ee527

Please sign in to comment.