Remove unnecesary del statement

This commit is contained in:
Eugenio Lacuesta 2021-03-15 14:25:46 -03:00
parent 3bea5e1a97
commit 2f61d7cc03
No known key found for this signature in database
GPG Key ID: DA3EF2D0913E9810
1 changed files with 0 additions and 2 deletions

View File

@ -70,8 +70,6 @@ class H2ConnectionPool:
d = pending_requests.popleft()
d.callback(conn)
del pending_requests
return conn
def _remove_connection(self, errors: List[BaseException], key: Tuple) -> None: