robertwayne / dpymenus

Simplified menus for discord.py developers.
https://dpymenus.com/
MIT License
26 stars 4 forks source link

README.md Usage examples missing commas and some formatting issues #6

Closed pTinosq closed 4 years ago

pTinosq commented 4 years ago

It appears that a comma is missing like so:

Current: await menu.add_page(title='Test Page', description=f'This is just a test!', color=discord.Color.green() on_next=some_func_here)

Fixed: await menu.add_page(title='Test Page', description=f'This is just a test!', color=discord.Color.green(), on_next=some_func_here)

On the button menus example, there is also a strange tab at the beginning (along with the aforementioned comma issue) .

Really really great work though, you saved me a tonne of hassle!

robertwayne commented 4 years ago

Fixed in the cd7a4a5b6088741ae65df8ad0772f26e8ca8b6c5.

Thank you!