Skip to content

Commit

Permalink
fix dates bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mharoruiz committed Dec 19, 2024
1 parent af47290 commit 3519861
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/imf_reader/sdr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@
sdr.fetch_exchange_rates("USD")
```
Clear cached data
```python
sdr.clear_cache()
```
"""

from imf_reader.sdr.read_interest_rate import fetch_interest_rates
Expand Down
2 changes: 1 addition & 1 deletion src/imf_reader/sdr/read_announcements.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def format_date(month: int, year: int) -> str:

@lru_cache
def get_holdings_and_allocations_data(
month: int,
year: int,
month: int,
):
"""Get sdr allocations and holdings data for a given month and year"""

Expand Down

0 comments on commit 3519861

Please sign in to comment.