10 lines
312 B
Python
10 lines
312 B
Python
from BreCal.stubs.times_full import get_times_full_simple
|
|
from BreCal.database.enums import ParticipantType
|
|
|
|
def get_times_port_authority():
|
|
times_port_authority = get_times_full_simple()
|
|
times_port_authority.participant_type = ParticipantType.PORT_ADMINISTRATION.value
|
|
return times_port_authority
|
|
|
|
|