diff options
author | 2021-04-11 14:06:39 -0400 | |
---|---|---|
committer | 2021-04-11 14:06:39 -0400 | |
commit | e4829ffe61d8eda83ff89e7b86de35fe930bb793 (patch) | |
tree | 44ab8dca822650fa056e7dcbaff5784d7f28bb85 | |
parent | Remove unused codeblock regex (diff) |
Update docstring for reset
Updated the docstring for `reset` to provide
accurate information as to what the command does.
-rw-r--r-- | bot/exts/internal_eval/_internal_eval.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/internal_eval/_internal_eval.py b/bot/exts/internal_eval/_internal_eval.py index 4746c6c9..8e474b7d 100644 --- a/bot/exts/internal_eval/_internal_eval.py +++ b/bot/exts/internal_eval/_internal_eval.py @@ -175,6 +175,6 @@ class InternalEval(commands.Cog): @internal_group.command(name='reset', aliases=("clear", "exit", "r", "c")) @with_role(Roles.admin) async def reset(self, ctx: commands.Context) -> None: - """Run eval in a REPL-like format.""" + """Reset the context and locals of the eval session.""" self.locals = {} await ctx.send("The evaluation context was reset.") |