(self)
| 130 | self.pool = timeout if isinstance(pool, UnsetType) else pool |
| 131 | |
| 132 | def as_dict(self) -> dict[str, float | None]: |
| 133 | return { |
| 134 | "connect": self.connect, |
| 135 | "read": self.read, |
| 136 | "write": self.write, |
| 137 | "pool": self.pool, |
| 138 | } |
| 139 | |
| 140 | def __eq__(self, other: typing.Any) -> bool: |
| 141 | return ( |
no outgoing calls
no test coverage detected