|
|
|
@ -183,10 +183,12 @@ def get_abbreviated_committee_name(name: str, district: str) -> str:
|
|
|
|
|
start_video_conf2 = "Nichtöffentliche Videokonferenz " |
|
|
|
|
start_video_conf3 = "Nichtöffentliche Videokonferenz- " |
|
|
|
|
start_video_conf4 = "öffentliche Videokonferenz - " |
|
|
|
|
start_video_conf5 = "Öffentliche Videokonferenz " |
|
|
|
|
start_video_conf1_p = re.compile("NICHTÖFFENTLICHE VIDEOKONFERENZ! ", re.I) |
|
|
|
|
start_video_conf2_p = re.compile("Nichtöffentliche Videokonferenz ", re.I) |
|
|
|
|
start_video_conf3_p = re.compile("Nichtöffentliche Videokonferenz- ", re.I) |
|
|
|
|
start_video_conf4_p = re.compile("öffentliche Videokonferenz - ", re.I) |
|
|
|
|
start_video_conf5_p = re.compile("Öffentliche Videokonferenz ", re.I) |
|
|
|
|
abbreviated_name = "" |
|
|
|
|
|
|
|
|
|
if start_video_conf1_p.match(name): |
|
|
|
@ -197,6 +199,8 @@ def get_abbreviated_committee_name(name: str, district: str) -> str:
|
|
|
|
|
name = name[len(start_video_conf3):] |
|
|
|
|
if start_video_conf4_p.match(name): |
|
|
|
|
name = name[len(start_video_conf4):] |
|
|
|
|
if start_video_conf5_p.match(name): |
|
|
|
|
name = name[len(start_video_conf5):] |
|
|
|
|
if name.startswith(start_plenary): |
|
|
|
|
abbreviated_name = "BV" |
|
|
|
|
elif name.startswith(start_committee): |
|
|
|
|