Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
krittick authored Apr 17, 2022
1 parent 5f38899 commit 646df61
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions discord/ext/pages/pagination.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,37 +591,32 @@ def add_default_buttons(self):
label="<<",
style=discord.ButtonStyle.blurple,
row=self.default_button_row,
custom_id="pages_first_button",
),
PaginatorButton(
"prev",
label="<",
style=discord.ButtonStyle.red,
loop_label="↪",
row=self.default_button_row,
custom_id="pages_prev_button",
),
PaginatorButton(
"page_indicator",
style=discord.ButtonStyle.gray,
disabled=True,
row=self.default_button_row,
custom_id="pages_indicator_button",
),
PaginatorButton(
"next",
label=">",
style=discord.ButtonStyle.green,
loop_label="↩",
row=self.default_button_row,
custom_id="pages_next_button",
),
PaginatorButton(
"last",
label=">>",
style=discord.ButtonStyle.blurple,
row=self.default_button_row,
custom_id="pages_last_button",
),
]
for button in default_buttons:
Expand Down

0 comments on commit 646df61

Please sign in to comment.