diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2021-05-16 16:53:13 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2021-05-16 16:53:13 +0100 |
commit | 4dff45ad4f5459e62fde51071bb03b7fbde12954 (patch) | |
tree | 3411e22c6d4714e4d373b3c4bf144ad5d32e736a /datamaps/plugins/dft/master.py | |
parent | 4364d434b7f494a42937f4303020f86d8ca2821a (diff) |
working on Month class
Diffstat (limited to 'datamaps/plugins/dft/master.py')
-rw-r--r-- | datamaps/plugins/dft/master.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/datamaps/plugins/dft/master.py b/datamaps/plugins/dft/master.py index 744cc27..c3e6c3b 100644 --- a/datamaps/plugins/dft/master.py +++ b/datamaps/plugins/dft/master.py @@ -158,6 +158,14 @@ class Master: return self._quarter @property + def month(self): + """ + Returns the ``Month`` object associated with the ``Master``. + """ + pass + + + @property def filename(self): """The filename of the master xlsx file, e.g. ``master_1_2017.xlsx``. """ |