9 lines
276 B
Python
9 lines
276 B
Python
from BreCal.stubs.times_full import get_times_full_simple
|
|
from BreCal.database.enums import ParticipantType
|
|
|
|
def get_times_terminal():
|
|
times_terminal = get_times_full_simple()
|
|
times_terminal.participant_type = ParticipantType.TERMINAL.value
|
|
return times_terminal
|
|
|