Possible return value of the `start` function. Indicates that a call to `start` successfully launched a new TensorBoard process, which is available with the provided info. Attributes: info: A `TensorBoardInfo` object.
| 342 | |
| 343 | @dataclasses.dataclass(frozen=True) |
| 344 | class StartLaunched: |
| 345 | """Possible return value of the `start` function. |
| 346 | |
| 347 | Indicates that a call to `start` successfully launched a new |
| 348 | TensorBoard process, which is available with the provided info. |
| 349 | |
| 350 | Attributes: |
| 351 | info: A `TensorBoardInfo` object. |
| 352 | """ |
| 353 | |
| 354 | info: TensorBoardInfo |
| 355 | |
| 356 | |
| 357 | @dataclasses.dataclass(frozen=True) |
no outgoing calls
no test coverage detected
searching dependent graphs…