10 lines
352 B
Python
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
|