Skip to content

Commit d5f7e63

Browse files
committed
Fix lint/formatting
1 parent 5dd4aaa commit d5f7e63

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

apps/bfd-pipeline-idr/model/base_model.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,11 @@ def claim_related_conditions_cte(source: Source) -> str:
830830
"""
831831

832832

833-
def stale_phase_1_claims_query(header_table: str, item_table: str, cutoff_date: datetime) -> tuple[str, tuple]:
833+
def stale_phase_1_claims_query(
834+
header_table: str,
835+
item_table: str,
836+
cutoff_date: datetime,
837+
) -> tuple[str, tuple]:
834838
return (
835839
f"""
836840
SELECT clm.clm_uniq_id

apps/bfd-pipeline-idr/pipeline_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def prune_phase_1_ss_claims(
149149
while True:
150150
with conn.transaction():
151151
res = conn.execute(
152-
f"""DELETE FROM {target_table} WHERE clm_uniq_id IN ({prune_query})""", # type: ignore
152+
f"""DELETE FROM {target_table} WHERE clm_uniq_id IN ({prune_query})""", # type: ignore
153153
params,
154154
)
155155

0 commit comments

Comments
 (0)