Skip to content

Commit

Permalink
update currency demo script with new directory path
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissimpkins committed Feb 1, 2025
1 parent aee2fd6 commit 4bdf08e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/currency.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ def print_currency_symbols(currency_symbols: Dict[str, Dict[str, List[str]]]) ->


if __name__ == "__main__":
filepath = Path(__file__).parent.parent / "docs" / "v1" / "data.json"
filepath = Path(__file__).parent.parent / "api" / "data.json"
currency_symbols = get_currency_symbols(str(filepath))
print_currency_symbols(currency_symbols)

0 comments on commit 4bdf08e

Please sign in to comment.