diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2021-05-16 17:35:14 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2021-05-16 17:35:14 +0100 |
commit | 58e1ba750e34f876c5435ee519483ffd87913854 (patch) | |
tree | bda61348dfa9de107b0795f544d562dc9cb4a67d /datamaps/plugins | |
parent | 4dff45ad4f5459e62fde51071bb03b7fbde12954 (diff) |
nearly got tests passing - need to get correct item from list
Diffstat (limited to 'datamaps/plugins')
-rw-r--r-- | datamaps/plugins/dft/master.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/datamaps/plugins/dft/master.py b/datamaps/plugins/dft/master.py index c3e6c3b..1eab1b7 100644 --- a/datamaps/plugins/dft/master.py +++ b/datamaps/plugins/dft/master.py @@ -162,7 +162,8 @@ class Master: """ Returns the ``Month`` object associated with the ``Master``. """ - pass + breakpoint() + return [m.month for m in self.quarter.months] @property |