diff options
author | 2020-02-17 12:36:20 +0200 | |
---|---|---|
committer | 2020-02-17 12:36:20 +0200 | |
commit | c1fe1a989d1d9035bc32b1f6e789f2a82bbadab8 (patch) | |
tree | 62b1a97ca59177d9325acc77cbd2ed1c583ef5b0 | |
parent | Pagination migrations - Actions and emojis (diff) |
Pagination migrations - Data Structure Modified
Changed the pagination emoji collection from list to tuple
This change was suggested since this collection is constant
-rw-r--r-- | bot/pagination.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/pagination.py b/bot/pagination.py index b5bb1720..a024e0d9 100644 --- a/bot/pagination.py +++ b/bot/pagination.py @@ -12,7 +12,7 @@ RIGHT_EMOJI = "\u27A1" # [:arrow_right:] LAST_EMOJI = "\u23ED" # [:track_next:] DELETE_EMOJI = "<:trashcan:637136429717389331>" # [:trashcan:] -PAGINATION_EMOJI = [FIRST_EMOJI, LEFT_EMOJI, RIGHT_EMOJI, LAST_EMOJI, DELETE_EMOJI] +PAGINATION_EMOJI = (FIRST_EMOJI, LEFT_EMOJI, RIGHT_EMOJI, LAST_EMOJI, DELETE_EMOJI) log = logging.getLogger(__name__) |