File size: 200 Bytes
1748405
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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]