Quick fix for handling date data.
All checks were successful
Testing / pytest (push) Successful in 24s
Testing / mypy (push) Successful in 33s
Testing / stability-extra-test (push) Successful in 24s

This commit is contained in:
Sergio Martínez Portela 2024-07-29 15:36:57 +01:00
parent f5cafa9c62
commit 071004ea7a

View File

@ -829,6 +829,10 @@ class Headline:
self.properties = []
self.structural = []
self.delimiters = []
self.scheduled = None
self.deadline = None
self.closed = None
for line in new_contents.split('\n'):
self.contents.append(
RawLine(linenum=0, line=line)