Skip to content

Commit ee7fd0a

Browse files
committed
Fix flake8 errors
1 parent 54dfedc commit ee7fd0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_context_processors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ async def func(request):
4545
aiohttp_jinja2.context_processors_middleware])
4646
aiohttp_jinja2.setup(subapp, loader=jinja2.DictLoader(
4747
{'tmpl.jinja2':
48-
'foo: {{ foo }}, bar: {{ bar }}, baz: {{ baz }}, path: {{ request.path }}'}))
48+
'foo: {{ foo }}, bar: {{ bar }}, '
49+
'baz: {{ baz }}, path: {{ request.path }}'}))
4950

5051
async def subprocessor(request):
5152
return {'foo': 1,
@@ -72,7 +73,6 @@ async def processor(request):
7273

7374
app.add_subapp('/sub/', subapp)
7475

75-
7676
client = await aiohttp_client(app)
7777

7878
resp = await client.get('/sub/')

0 commit comments

Comments
 (0)