Skip to content

Commit b0e3501

Browse files
committed
Resolve flake8 error again
1 parent 0460beb commit b0e3501

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_tcp.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1264,7 +1264,10 @@ class _TestSSL(tb.SSLTestCase):
12641264
TIMEOUT = 60
12651265

12661266
def test_start_tls_buffer_transfer(self):
1267-
if self.implementation == 'asyncio' and sys.version_info[:2] <= (3, 11):
1267+
if (
1268+
self.implementation == 'asyncio'
1269+
and sys.version_info[:2] <= (3, 11)
1270+
):
12681271
# StreamWriter.start_tls() introduced in Python 3.11
12691272
raise unittest.SkipTest(
12701273
'StreamWriter.start_tls() not supported'

0 commit comments

Comments
 (0)