Skip to content

Commit

Permalink
Fix data path
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-snx committed Nov 14, 2024
1 parent 4830a0a commit 93724aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions indexers/scripts/clean.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@


def clean_parquet_files(network_name: str, protocol: str):
source_base = f"parquet-data/indexers-v2-raw/{network_name}/{protocol}"
target_base = f"parquet-data/indexers-v2-clean/{network_name}/{protocol}"
source_base = f"parquet-data/indexers-raw/{network_name}/{protocol}"
target_base = f"parquet-data/indexers-clean/{network_name}/{protocol}"

protocol_path = Path(source_base)
if not protocol_path.exists():
Expand Down

0 comments on commit 93724aa

Please sign in to comment.