Fixed missing len of pattern
This commit is contained in:
@ -175,16 +175,19 @@ 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 = re.compile("NICHTÖFFENTLICHE VIDEOKONFERENZ! ", re.I)
|
||||
start_video_conf2 = re.compile("Nichtöffentliche Videokonferenz ", re.I)
|
||||
start_video_conf3 = re.compile("Nichtöffentliche Videokonferenz- ", re.I)
|
||||
start_video_conf1 = "NICHTÖFFENTLICHE VIDEOKONFERENZ! "
|
||||
start_video_conf2 = "Nichtöffentliche Videokonferenz "
|
||||
start_video_conf3 = "Nichtö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)
|
||||
abbreviated_name = ""
|
||||
|
||||
if start_video_conf1.match(name):
|
||||
if start_video_conf1_p.match(name):
|
||||
name = name[len(start_video_conf1):]
|
||||
if start_video_conf2.match(name):
|
||||
if start_video_conf2_p.match(name):
|
||||
name = name[len(start_video_conf2):]
|
||||
if start_video_conf3.match(name):
|
||||
if start_video_conf3_p.match(name):
|
||||
name = name[len(start_video_conf3):]
|
||||
if name.startswith(start_plenary):
|
||||
abbreviated_name = "BV"
|
||||
|
||||
Reference in New Issue
Block a user