From 0ef74a740ef9378c3bc0b8a0b5d19720262fb411 Mon Sep 17 00:00:00 2001 From: Bart Broere Date: Thu, 24 Oct 2024 07:28:49 +0200 Subject: [PATCH] Change to isinstance for type checking --- docxtpl/template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docxtpl/template.py b/docxtpl/template.py index d37911f..2a442fa 100644 --- a/docxtpl/template.py +++ b/docxtpl/template.py @@ -360,7 +360,7 @@ def render_footnotes( for section in self.docx.sections: for part in section.part.package.parts: if part.content_type == 'application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml': - xml = self.patch_xml(part.blob.decode('utf-8') if type(part.blob) is bytes else part.blob) + xml = self.patch_xml(part.blob.decode('utf-8') if isinstance(part.blob, bytes) else part.blob) xml = self.render_xml_part(xml, part, context, jinja_env) part._blob = xml