~dricottone/fmg-timesheets

e4ae39d2f8d526f65c630679a6bd11ac23a32170 — Dominic Ricottone 2 years ago 9efdae5
Minor debug/toolchain update
2 files changed, 1 insertions(+), 1 deletions(-)

M Makefile
M parser/timeentry.py
M Makefile => Makefile +1 -0
@@ 1,6 1,7 @@
.PHONY: clean
clean:
	rm --force --recursive __pycache__
	rm --force --recursive **/__pycache__
	rm --force --recursive .venv

.venv:

M parser/timeentry.py => parser/timeentry.py +0 -1
@@ 143,7 143,6 @@ class TimeEntry(object):
                del self._data[0:3]

    def parse_entry_notes(self):
        print(self._data)
        self._notes = []
        if len(self) and self._data[0][0] == "Notes":
            del self._data[0]