sprint-econtai/pipeline/postprocessors.py
Félix Dorn 2da206d368 init
2025-07-03 16:26:30 +02:00

10 lines
352 B
Python

from .run import Run
def check_for_insanity(run: Run) -> Run:
raise NotImplementedError
def create_df_tasks(run: Run) -> Run:
"""
df_tasks are tasks that are remote-able, estimateable
Add lb_estimate_in_minutes, ub_estimate_in_minutes, estimate_range, estimate_ratio, estimate_midpoint as columns
"""
raise NotImplementedError