aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2021-05-16 19:58:29 +0100
committerMatthew Lemon <matt@matthewlemon.com>2021-05-16 19:58:29 +0100
commit9d7422e112214a3b76ba97b08d3090545d0dfd2c (patch)
tree95867bfacd694e08c7a009818e2688f1abb6e33a
parent2bb492949858b0753a68beba76fd70ace2a1492f (diff)
fixed type hint
-rw-r--r--datamaps/plugins/dft/master.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/datamaps/plugins/dft/master.py b/datamaps/plugins/dft/master.py
index ac893b8..04dfc19 100644
--- a/datamaps/plugins/dft/master.py
+++ b/datamaps/plugins/dft/master.py
@@ -151,7 +151,9 @@ class Master:
..etc
"""
- def __init__(self, quarter: Quarter, path: str, declared_month=None) -> None:
+ def __init__(
+ self, quarter: Quarter, path: str, declared_month: Optional[int] = None
+ ) -> None:
self._quarter = quarter
self._declared_month = declared_month
self.path = path