(self, msg: str, *args: Any)
| 4242 | |
| 4243 | class _Logger: |
| 4244 | def error(self, msg: str, *args: Any) -> None: |
| 4245 | errors.append(msg % args if args else msg) |
| 4246 | |
| 4247 | client.logger = _Logger() # type: ignore[assignment] |
| 4248 |
no outgoing calls
no test coverage detected