Added additional video conference start
This commit is contained in:
@ -174,14 +174,17 @@ def get_abbreviated_committee_name(name: str, district: str) -> str:
|
||||
start_youth_help_committee = "Sitzung des Jugendhilfeausschusses"
|
||||
start_other_committee = "Sitzung des"
|
||||
end_other_committee = "ausschusses"
|
||||
start_video_conf1 = "NICHTÖFFENTLICHE VIDEOKONFERENZ! "
|
||||
start_video_conf1 = "NICHTÖFFENTLICHE VIDEOKONFERENZ! "
|
||||
start_video_conf2 = "Nichtöffentliche Videokonferenz "
|
||||
start_video_conf3 = "Nichtöffentliche Videokonferenz- "
|
||||
abbreviated_name = ""
|
||||
|
||||
if name.startswith(start_video_conf1):
|
||||
name = name[len(start_video_conf2):]
|
||||
if name.startswith(start_video_conf1):
|
||||
if name.startswith(start_video_conf2):
|
||||
name = name[len(start_video_conf2):]
|
||||
if name.startswith(start_video_conf3):
|
||||
name = name[len(start_video_conf3):]
|
||||
if name.startswith(start_plenary):
|
||||
abbreviated_name = "BV"
|
||||
elif name.startswith(start_committee):
|
||||
|
||||
Reference in New Issue
Block a user