diff --git a/docxtpl/template.py b/docxtpl/template.py index 29e1b08..6babb73 100644 --- a/docxtpl/template.py +++ b/docxtpl/template.py @@ -350,10 +350,10 @@ class DocxTemplate(object): template = jinja_env.from_string(initial) rendered = template.render(context) setattr(self.docx.core_properties, prop, rendered) - + def render_footnotes( self, context: Dict[str, Any], jinja_env: Optional[Environment] = None - ) -> None: + ) -> None: if jinja_env is None: jinja_env = Environment()