diff options
author | 2022-10-20 08:41:28 +0100 | |
---|---|---|
committer | 2022-10-20 08:41:28 +0100 | |
commit | c5aaccbfa5f0cf0b6c1696cf8607898722c141eb (patch) | |
tree | cf8d7322d9c02e203c98f391644c9da0c8ac2630 | |
parent | update doc strings to reflect the usage of the new param (diff) |
apply style guidelines to signature
-rw-r--r-- | bot/exts/utils/utils.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/bot/exts/utils/utils.py b/bot/exts/utils/utils.py index 3e913b6ea..34ac8276d 100644 --- a/bot/exts/utils/utils.py +++ b/bot/exts/utils/utils.py @@ -86,8 +86,13 @@ class Utils(Cog): await LinePaginator.paginate(char_list, ctx, embed, max_lines=10, max_size=2000, empty=False) @command() - async def zen(self, ctx: Context, zen_rule_index: int | None, - *, search_value: Union[int, str, None] = None) -> None: + async def zen( + self, + ctx: Context, + zen_rule_index: int | None, + *, + search_value: Union[int, str, None] = None + ) -> None: """ Show the Zen of Python. |