Source code for ralph.pipeline.events.worker_started_event

"""Worker started event for the pipeline."""

from dataclasses import dataclass


[docs] @dataclass(frozen=True) class WorkerStartedEvent: """Emitted when a parallel worker begins execution.""" unit_id: str