Skip to content

Commit 6a6442f

Browse files
committed
FIX line lengths for flake8.
1 parent 5c0a5f5 commit 6a6442f

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

tests/test_web.py

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ async def readany(self):
1616

1717

1818
@pytest.mark.asyncio
19-
async def test_web_handler(irc3_bot_factory, aiohttp_raw_server, aiohttp_client):
19+
async def test_web_handler(
20+
irc3_bot_factory, aiohttp_raw_server, aiohttp_client
21+
):
2022
bot = irc3_bot_factory(includes=['irc3.plugins.web'])
2123
plugin = bot.get_plugin(web.Web)
2224
plugin.server_ready()
@@ -27,8 +29,9 @@ async def test_web_handler(irc3_bot_factory, aiohttp_raw_server, aiohttp_client)
2729

2830

2931
@pytest.mark.asyncio
30-
async def test_web_handler_post(irc3_bot_factory,
31-
aiohttp_raw_server, aiohttp_client):
32+
async def test_web_handler_post(
33+
irc3_bot_factory, aiohttp_raw_server, aiohttp_client
34+
):
3235
bot = irc3_bot_factory(includes=['irc3.plugins.web'])
3336
plugin = bot.get_plugin(web.Web)
3437

@@ -42,8 +45,9 @@ async def test_web_handler_post(irc3_bot_factory,
4245

4346

4447
@pytest.mark.asyncio
45-
async def test_web_handler_post_auth(irc3_bot_factory,
46-
aiohttp_raw_server, aiohttp_client):
48+
async def test_web_handler_post_auth(
49+
irc3_bot_factory, aiohttp_raw_server, aiohttp_client
50+
):
4751
bot = irc3_bot_factory(**{
4852
'includes': ['irc3.plugins.web'],
4953
'irc3.plugins.web': {'api_key': 'toomanysecrets'},
@@ -66,7 +70,9 @@ async def test_web_handler_post_auth(irc3_bot_factory,
6670

6771

6872
@pytest.mark.asyncio
69-
async def test_web_handler_404(irc3_bot_factory, aiohttp_raw_server, aiohttp_client):
73+
async def test_web_handler_404(
74+
irc3_bot_factory, aiohttp_raw_server, aiohttp_client
75+
):
7076
bot = irc3_bot_factory(includes=['irc3.plugins.web'])
7177
plugin = bot.get_plugin(web.Web)
7278

0 commit comments

Comments
 (0)