(self)
| 111 | return None |
| 112 | |
| 113 | async def dispose(self) -> None: |
| 114 | try: |
| 115 | await self._channel.send( |
| 116 | "dispose", |
| 117 | None, |
| 118 | ) |
| 119 | except Exception as e: |
| 120 | if not is_target_closed_error(e): |
| 121 | raise e |
| 122 | |
| 123 | async def json_value(self) -> Any: |
| 124 | return parse_result( |
nothing calls this directly
no test coverage detected