add todos

This commit is contained in:
Maximilian Keßler 2022-02-07 23:38:32 +01:00
parent d28205311c
commit 7d8f33294f
2 changed files with 4 additions and 0 deletions

View file

@ -122,6 +122,8 @@ class PyTeXBuilder:
) )
) )
# TODO: give pytex source file some additional building information
def _build(self): def _build(self):
logger.info("Starting build") logger.info("Starting build")
self.load_pytex_files() self.load_pytex_files()

View file

@ -19,6 +19,8 @@ class PyTeXSourceFile:
self._formatter: Optional[FormatterIF] = None self._formatter: Optional[FormatterIF] = None
self._file_hash: Optional[str] = None self._file_hash: Optional[str] = None
# TODO: select formatter automatically...?
@property @property
def file_hash(self) -> str: def file_hash(self) -> str:
if self._file_hash is None: if self._file_hash is None: