TargetExitedEventData is the data associated with a TargetExitedEvent * ``exit_code``: the exit code of the target
| 383 | |
| 384 | |
| 385 | class TargetExitedEventData: |
| 386 | """ |
| 387 | TargetExitedEventData is the data associated with a TargetExitedEvent |
| 388 | |
| 389 | * ``exit_code``: the exit code of the target |
| 390 | |
| 391 | """ |
| 392 | def __init__(self, exit_code: int): |
| 393 | self.exit_code = exit_code |
| 394 | |
| 395 | |
| 396 | class StdOutMessageEventData: |