diff options
Diffstat (limited to 'tools/cru-py/cru/template.py')
-rw-r--r-- | tools/cru-py/cru/template.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/cru-py/cru/template.py b/tools/cru-py/cru/template.py index eb8c8ab..2b0f1bc 100644 --- a/tools/cru-py/cru/template.py +++ b/tools/cru-py/cru/template.py @@ -29,6 +29,10 @@ class CruTemplate: return self._prefix @property + def raw_text(self) -> str: + return self._template.template + + @property def py_template(self) -> Template: return self._template |