From 04c8787155137206d58d6ee147d06482c1a8b598 Mon Sep 17 00:00:00 2001 From: David Lord Date: Fri, 10 Jan 2020 07:46:18 -0800 Subject: apply black --- src/jinja2/nativetypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/jinja2/nativetypes.py') diff --git a/src/jinja2/nativetypes.py b/src/jinja2/nativetypes.py index 6b3e5f5..9866c96 100644 --- a/src/jinja2/nativetypes.py +++ b/src/jinja2/nativetypes.py @@ -33,7 +33,7 @@ def native_concat(nodes, preserve_quotes=True): else: if isinstance(nodes, types.GeneratorType): nodes = chain(head, nodes) - raw = u''.join([text_type(v) for v in nodes]) + raw = u"".join([text_type(v) for v in nodes]) try: literal = literal_eval(raw) -- cgit v1.2.1