aboutsummaryrefslogtreecommitdiffstats
path: root/datamaps/api/api.py
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2021-05-17 08:13:22 +0100
committerMatthew Lemon <matt@matthewlemon.com>2021-05-17 08:13:22 +0100
commita5b4f46b55ee39409126da978677f54e271060c1 (patch)
treefd8d7afc460479efb3220fcf5c61f38d0dc9d91d /datamaps/api/api.py
parente3f26229d0f69ddb93b866e184626337c30778c2 (diff)
refactorings
Diffstat (limited to 'datamaps/api/api.py')
-rw-r--r--datamaps/api/api.py1
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.