Skip to content

Commit

Permalink
Fix extra space in /ball give (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeSofroniouCy authored Jun 6, 2024
1 parent 1c529dd commit c2b359a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ballsdex/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def to_string(self, bot: discord.Client | None = None, is_trade: bool = False) -
if isinstance(self.countryball, Ball)
else f"<Ball {self.ball_id}>"
)
return f"{emotes}#{self.pk:0X} {country} "
return f"{emotes}#{self.pk:0X} {country}"

def special_emoji(self, bot: discord.Client | None, use_custom_emoji: bool = True) -> str:
if self.specialcard:
Expand Down

0 comments on commit c2b359a

Please sign in to comment.