working-time-calculation / type_alias.py
jurgendn's picture
[Build] First time build
1748405
raw
history blame contribute delete
200 Bytes
from typing import Literal, Tuple
import pandas as pd
LATE_MODE = Literal['morning_in', 'afternoon_in']
EARLY_MODE = Literal['morning_out', 'afternoon_out']
GRADIO_OUTPUT = Tuple[str, pd.DataFrame]