Skip to content

Commit

Permalink
Swap from custom trashcan emoji to 🗑️
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed May 28, 2024
1 parent dc416fb commit e202f58
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion arthur/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class Config(
guild_id: int = 267624335836053506
devops_channel_id: int = 675756741417369640
sentry_dsn: str = ""
trashcan: str = "<:trashcan:637136429717389331>"


GIT_SHA = environ.get("GIT_SHA", "development")
Expand Down
4 changes: 1 addition & 3 deletions arthur/pagination.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
from discord.ext.commands import Context
from pydis_core.utils.pagination import LinePaginator as _LinePaginator, PaginationEmojis

from arthur.config import CONFIG


class LinePaginator(_LinePaginator):
"""
Expand Down Expand Up @@ -43,7 +41,7 @@ async def paginate(
Consult the super class's `paginate` method for detailed information.
"""
return await super().paginate(
pagination_emojis=PaginationEmojis(delete=CONFIG.trashcan),
pagination_emojis=PaginationEmojis(delete="\N{WASTEBASKET}"),
lines=lines,
ctx=ctx,
embed=embed,
Expand Down

0 comments on commit e202f58

Please sign in to comment.