From 7fa1a697a837459268ff51b96441309485fedf38 Mon Sep 17 00:00:00 2001 From: Asher Glick Date: Fri, 3 Nov 2023 17:56:13 -0500 Subject: [PATCH] fixing linter error --- xml_converter/generators/jinja_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml_converter/generators/jinja_helpers.py b/xml_converter/generators/jinja_helpers.py index 9030e873..d7937598 100644 --- a/xml_converter/generators/jinja_helpers.py +++ b/xml_converter/generators/jinja_helpers.py @@ -225,7 +225,7 @@ def unindent_block(block: List[str]) -> List[str]: # This function parses out jinja control flow tags from a string of text. ################################################################################ def parse_out_tags(line: str) -> List[str]: - tags = [] + tags: List[str] = [] while True: start_index = line.find("{%")