Skip to content

Commit

Permalink
Formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bram-vdberg committed Nov 1, 2024
1 parent b67069d commit 8af613e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/deploy_prefect/flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
upload_data_to_dune,
update_aggregate_query,
)
from src.deploy_prefect.dataclasses import ENV, CHAIN, Config
from src.deploy_prefect.models import ENV, CHAIN, Config


@flow(retries=3, retry_delay_seconds=60, log_prints=True) # type: ignore[misc]
Expand Down
2 changes: 1 addition & 1 deletion src/deploy_prefect/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def update_aggregate_query(table_name: str, config: Config) -> None:
+ sql_query[insertion_point:]
)
dune.update_query( # type: ignore[attr-defined]
query_sql=updated_sql_query, query_id=dune_query_id
query_sql=updated_sql_query, query_id=config.dune_query_id
)
else:
logger.info("Table already in query, not updating query")

0 comments on commit 8af613e

Please sign in to comment.