Skip to content

Commit

Permalink
fixing linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
AsherGlick committed Nov 3, 2023
1 parent 1540377 commit 7fa1a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xml_converter/generators/jinja_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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("{%")
Expand Down

0 comments on commit 7fa1a69

Please sign in to comment.