9 lines
261 B
Python
9 lines
261 B
Python
from BreCal.stubs.times_full import get_times_full_simple
|
|
from BreCal.database.enums import ParticipantType
|
|
|
|
def get_times_pilot():
|
|
times_pilot = get_times_full_simple()
|
|
times_pilot.participant_type = ParticipantType.PILOT.value
|
|
return times_pilot
|
|
|