- pagination_emojis (PaginationEmojis) – The emojis used to navigate pages. 
-- lines (list[str]) – A list of lines to be added to the paginated content. 
-- ctx (- discord.ext.commands.Context) – The context in which the pagination is needed.
 
-- embed (- discord.Embed) – The embed that holds the content, it serves as the page.
 
-- prefix (str) – The prefix inserted to every page. e.g. three backticks. 
-- suffix (str) – The suffix appended at the end of every page. e.g. three backticks. 
-- max_lines (int) – The maximum amount of lines allowed in a page. 
-- max_size (int) – The maximum amount of codepoints allowed in a page. 
-- scale_to_size (int) – The maximum amount of characters a single line can scale up to. 
-- empty (bool) – Indicates whether an empty line should be added to each provided line. 
-- restrict_to_user (- discord.User) – The user to whom interaction with the pages should be restricted.
 
-- timeout (int) – The timeout after which users cannot change pages anymore. 
-- footer_text (str) – Text to be added as a footer for each page. 
-- url (str) – The url to be set for the pagination embed. 
-- exception_on_empty_embed (bool) – Indicates whether to raise an exception when no lines are provided. 
-- reply (bool) – Indicates whether to send the page as a reply to the context’s message. 
-- allowed_roles (Sequence[int]) – A list of role ids that are allowed to change pages. 
+- lines (list[str]) – A list of lines to be added to the paginated content. 
+- ctx (- discord.ext.commands.Context) – The context in which the pagination is needed.
 
+- embed (- discord.Embed) – The embed that holds the content, it serves as the page.
 
+- prefix (str) – The prefix inserted to every page. e.g. three backticks. 
+- suffix (str) – The suffix appended at the end of every page. e.g. three backticks. 
+- max_lines (int) – The maximum amount of lines allowed in a page. 
+- max_size (int) – The maximum amount of codepoints allowed in a page. 
+- scale_to_size (int) – The maximum amount of characters a single line can scale up to. 
+- empty (bool) – Indicates whether an empty line should be added to each provided line. 
+- restrict_to_user (- discord.User) – The user to whom interaction with the pages should be restricted.
 
+- timeout (int) – The timeout after which users cannot change pages anymore. 
+- footer_text (str) – Text to be added as a footer for each page. 
+- url (str) – The url to be set for the pagination embed. 
+- exception_on_empty_embed (bool) – Indicates whether to raise an exception when no lines are provided. 
+- reply (bool) – Indicates whether to send the page as a reply to the context’s message. 
+- allowed_roles (Sequence[int]) – A list of role ids that are allowed to change pages.