This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # I know it looks like R.Danny's paginator, I looked at it for reference to try to figure out how to do the paginating and wrote it | |
| # in my own way. So don't accuse me of stealing code and modifying it to my own liking. In some ways or another, this paginator is simply | |
| # a more efficient version of the paginator found in ?tag help command (assuming you came here from discord.py). | |
| class Paginator: | |
| def __init__(self, ctx, entries: list, embed=True): | |
| self.bot = ctx.bot | |
| self.ctx = ctx | |
| self.entries = entries | |
| self.embed = embed |