Skip to content

Commit 968d9bd

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7315a1b commit 968d9bd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_proxy_functional.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ def secure_proxy_url(tls_certificate_pem_path: str) -> Iterator[URL]:
9898
while time.monotonic() < deadline:
9999
gc.collect()
100100
proxy_threads = [
101-
t for t in threading.enumerate()
101+
t
102+
for t in threading.enumerate()
102103
if "proxy" in t.name.lower() or "acceptor" in t.name.lower()
103104
]
104105
if not proxy_threads:

0 commit comments

Comments
 (0)