Skip to content

Commit 43c7d6d

Browse files
committed
remove redundant tuple
1 parent 4d25e75 commit 43c7d6d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

trio/_tests/test_ssl.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,7 @@ def ssl_echo_serve_sync(
115115
# other side has initiated a graceful shutdown; we try to
116116
# respond in kind but it's legal for them to have already
117117
# gone away.
118-
exceptions = (BrokenPipeError, ssl.SSLZeroReturnError)
119-
with suppress(*exceptions):
118+
with suppress(BrokenPipeError, ssl.SSLZeroReturnError):
120119
wrapped.unwrap()
121120
return
122121
wrapped.sendall(data)

0 commit comments

Comments
 (0)