diff options
Diffstat (limited to 'datamaps/api')
-rw-r--r-- | datamaps/api/api.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/datamaps/api/api.py b/datamaps/api/api.py index 6fcf4cf..b6d8025 100644 --- a/datamaps/api/api.py +++ b/datamaps/api/api.py @@ -14,6 +14,7 @@ def project_data_from_master_api(master_file: str, quarter: int, year: int): m = Master(Quarter(quarter, year), master_file) return m + def project_data_from_master_month_api(master_file: str, month: int, year: int): """Create a Master object directly without the need to explicitly pass a Month object. |