diff options
author | 2019-11-16 21:13:52 +1100 | |
---|---|---|
committer | 2019-11-16 21:13:52 +1100 | |
commit | 5f896ce4bdb78039624af4a10e16e68bbfff277d (patch) | |
tree | 100af89ec52abf804c4748b193a357f743c957e5 | |
parent | Apply suggestions from review (diff) |
Remove trailing comma
-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 bb49ead5e..76082f459 100644 --- a/bot/pagination.py +++ b/bot/pagination.py @@ -99,7 +99,7 @@ class LinePaginator(Paginator): timeout: int = 300, footer_text: str = None, url: str = None, - exception_on_empty_embed: bool = False, + exception_on_empty_embed: bool = False ) -> Optional[Message]: """ Use a paginator and set of reactions to provide pagination over a set of lines. |