Properly fixed regional committees
This commit is contained in:
@ -150,7 +150,7 @@ def get_abbreviated_committee_name(name: str) -> str:
|
|||||||
if len(abbreviated_name) == 1:
|
if len(abbreviated_name) == 1:
|
||||||
abbreviated_name = f"A{abbreviated_name}"
|
abbreviated_name = f"A{abbreviated_name}"
|
||||||
elif start_regional_committee in name:
|
elif start_regional_committee in name:
|
||||||
second_part = name[len(start_committee):]
|
second_part = name[len(start_regional_committee):]
|
||||||
second_split = second_part.split(sep="/")
|
second_split = second_part.split(sep="/")
|
||||||
abbreviated_name = f"Ra{get_abbreviation(second_split)}"
|
abbreviated_name = f"Ra{get_abbreviation(second_split)}"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user