Skip to content

Commit

Permalink
Standardize snapshot names (#1967)
Browse files Browse the repository at this point in the history
  • Loading branch information
arkid15r committed Aug 31, 2024
1 parent 1ae8509 commit 6c98fa5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/generate_snapshots.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ def generate_country_snapshots(self):
categories=country.supported_categories,
language="en_US",
),
f"snapshots/countries/{country_code}_{subdiv or 'COMMON'}.json",
"snapshots/countries/"
f"{country_code}_{(subdiv or 'COMMON').replace(' ', '_').upper()}.json",
)

def generate_financial_snapshots(self):
Expand Down

0 comments on commit 6c98fa5

Please sign in to comment.