Fix missing comma
All checks were successful
Build and Publish Jimmy.2 / build_and_publish (push) Successful in 7s

This commit is contained in:
Nexus 2024-05-03 20:35:33 +01:00
parent 50381a11c3
commit f66b496b22
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -13,7 +13,7 @@ from discord.ext import commands
SPAN_REGEX = re.compile( SPAN_REGEX = re.compile(
r"^(?P<party>(\D+)(?P<councillors>[0-9,]+)\scouncillors\s(?P<net>[0-9,]+)\scouncillors\s(?P<net_change>(gained|lost))$" r"^(?P<party>\D+)(?P<councillors>[0-9,]+)\scouncillors\s(?P<net>[0-9,]+)\scouncillors\s(?P<net_change>(gained|lost))$"
) )
MULTI: dict[str, int] = { MULTI: dict[str, int] = {
"gained": 1, "gained": 1,