Fabian Peschel
Fabian Peschel
**Description** Consider the following minimal example: ``` from jobflow import job, Flow, run_locally, Response @job def second(a): raise ValueError("Dummy") @job def first(): second_job = second(1) return Response(0, replace=Flow(second_job, output=second_job.output)) first_job...
Instead of storing only the value of an Enum in the output, I suggest to store the whole enum class in order to be able to recreate it properly. This...
**Description** Consider the following code snippet which executes a simple add job: ``` from jobflow import job, run_locally @job def add(a, b): """ Add job. """ return a + b...