diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2021-05-16 19:52:28 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2021-05-16 19:52:28 +0100 |
commit | 2bb492949858b0753a68beba76fd70ace2a1492f (patch) | |
tree | 3fa6b50c7dbffb4a6c1cf37e1160b65b8b5e8776 /datamaps/api/api.py | |
parent | 58e1ba750e34f876c5435ee519483ffd87913854 (diff) |
fixed broken test
Diffstat (limited to 'datamaps/api/api.py')
-rw-r--r-- | datamaps/api/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/datamaps/api/api.py b/datamaps/api/api.py index c9f9a64..6fcf4cf 100644 --- a/datamaps/api/api.py +++ b/datamaps/api/api.py @@ -35,5 +35,5 @@ def project_data_from_master_month_api(master_file: str, month: int, year: int): else: pass # TODO: raise exception here - m = Master(Quarter(quarter, year), master_file) + m = Master(Quarter(quarter, year), master_file, month) return m |