Possible return value of the `start` function. Indicates that a call to `start` was compatible with an existing TensorBoard process, which can be reused according to the provided info. Attributes: info: A `TensorBoardInfo` object.
| 327 | |
| 328 | @dataclasses.dataclass(frozen=True) |
| 329 | class StartReused: |
| 330 | """Possible return value of the `start` function. |
| 331 | |
| 332 | Indicates that a call to `start` was compatible with an existing |
| 333 | TensorBoard process, which can be reused according to the provided |
| 334 | info. |
| 335 | |
| 336 | Attributes: |
| 337 | info: A `TensorBoardInfo` object. |
| 338 | """ |
| 339 | |
| 340 | info: TensorBoardInfo |
| 341 | |
| 342 | |
| 343 | @dataclasses.dataclass(frozen=True) |
no outgoing calls
no test coverage detected
searching dependent graphs…