From 3af968470dc6138316231de11741ecea10aaccaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Mon, 7 Feb 2022 21:00:51 +0100 Subject: [PATCH] add TODO --- PyTeX/format/generic_text.py | 1 + 1 file changed, 1 insertion(+) diff --git a/PyTeX/format/generic_text.py b/PyTeX/format/generic_text.py index 2af91fb..17065aa 100644 --- a/PyTeX/format/generic_text.py +++ b/PyTeX/format/generic_text.py @@ -6,6 +6,7 @@ from ..logger import logger class GenericText: def __init__(self, content: Optional[Union[List[str], Path, str]] = None): + # TODO: what if paths are not absolute? Have a root available? if isinstance(content, list): self._content: Optional[List[str]] = content self._path = None