diff --git a/src/cogs/election.py b/src/cogs/election.py index c409a21..57c85d7 100644 --- a/src/cogs/election.py +++ b/src/cogs/election.py @@ -165,7 +165,8 @@ class ElectionCog(commands.Cog): colour_scores[party_name] = councillors symbol = "+" if net > 0 else '' description_parts.append( - f"**{party_name}**: {symbol}{net:,} ({councillors:,} total, {last_election:,} in 2019)" + f"**{party_name}**: {symbol}{net:,} ({councillors:,} total, " + f"{last_election:,} predicted by exit poll)" ) top_party = list(sorted(colour_scores.keys(), key=lambda k: colour_scores[k], reverse=True))[0]