Skip to content

Commit

Permalink
lint: fix f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftinv committed Nov 21, 2024
1 parent c7f9738 commit f15e324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion disnake/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -1614,7 +1614,7 @@ def system_content(self) -> Optional[str]:
f"\nWinning answer • {(100 * int(winning_answer_votes)) // int(total_votes)}%"
)
else:
msg += f"\n\nThere was no winner."
msg += "\n\nThere was no winner."
return msg

# in the event of an unknown or unsupported message type, we return nothing
Expand Down

0 comments on commit f15e324

Please sign in to comment.