Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 9, 2021
1 parent 41f15f5 commit 2cd8c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jinja2/nativetypes.py
Expand Up @@ -38,7 +38,7 @@ def native_concat(values: t.Iterable[t.Any]) -> t.Optional[t.Any]:
# In Python 3.10+ ast.literal_eval removes leading spaces/tabs
# from the given string. For backwards compatibility we need to
# parse the string ourselves without removing leading spaces/tabs.
parse(raw, mode='eval')
parse(raw, mode="eval")
)
except (ValueError, SyntaxError, MemoryError):
return raw
Expand Down

0 comments on commit 2cd8c83

Please sign in to comment.