Skip to content

Commit 25918ee

Browse files
author
autoruff
committed
fixup: sc-fixes-2 Python code fixed using ruff
1 parent 92ef5a6 commit 25918ee

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/test_init.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,9 @@ async def connect(
290290
)
291291

292292
# Happy flow
293-
app = self.setup_app(broken, timeout_happened, raise_timeout, fail_auth, stretch)
293+
app = self.setup_app(
294+
broken, timeout_happened, raise_timeout, fail_auth, stretch
295+
)
294296

295297
server = aiohttp.test_utils.TestServer(
296298
app, port=port, scheme="http", host="127.0.0.1"
@@ -374,7 +376,9 @@ async def connect_legacy(
374376
)
375377

376378
# Happy flow
377-
app = self.setup_legacy_app(broken, timeout_happened, raise_timeout, fail_auth, stretch)
379+
app = self.setup_legacy_app(
380+
broken, timeout_happened, raise_timeout, fail_auth, stretch
381+
)
378382

379383
server = aiohttp.test_utils.TestServer(
380384
app, port=port, scheme="http", host="127.0.0.1"

0 commit comments

Comments
 (0)