(self, pool: ConnectionPool[Any])
| 983 | self.growing = growing |
| 984 | |
| 985 | def _run(self, pool: ConnectionPool[Any]) -> None: |
| 986 | pool._add_connection(self.attempt, growing=self.growing) |
| 987 | |
| 988 | |
| 989 | class ReturnConnection(MaintenanceTask): |
nothing calls this directly
no test coverage detected