diff options
| author | 2019-01-10 17:37:20 +0100 | |
|---|---|---|
| committer | 2019-01-10 17:37:20 +0100 | |
| commit | 66e476f9ca024c5e6e2917679aaa4da03ef69acd (patch) | |
| tree | 6e2dda7f1c8f8d3cda011e25f2fb2d74e45a6f5c | |
| parent | Adding type annotations (diff) | |
Removing default argument for the alias <prefix>watch to require a reason via the alias as well
| -rw-r--r-- | bot/cogs/alias.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py index 2ce4a51e3..0b848c773 100644 --- a/bot/cogs/alias.py +++ b/bot/cogs/alias.py @@ -71,7 +71,7 @@ class Alias: @command(name="watch", hidden=True) async def bigbrother_watch_alias( - self, ctx, user: User, *, reason: str = None + self, ctx, user: User, *, reason: str ): """ Alias for invoking <prefix>bigbrother watch user [text_channel]. |