mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-19 17:03:02 +00:00
7 lines
159 B
Python
7 lines
159 B
Python
from typing import Optional
|
|
|
|
from domain.abri.models import SlotCode
|
|
|
|
|
|
def slot_for_confirmed_time(confirmed_time: Optional[str]) -> SlotCode:
|
|
return "AD"
|