diff options
Diffstat (limited to 'bot/utils/decorators.py')
-rw-r--r-- | bot/utils/decorators.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bot/utils/decorators.py b/bot/utils/decorators.py index 3688327a..ed03c054 100644 --- a/bot/utils/decorators.py +++ b/bot/utils/decorators.py @@ -203,7 +203,6 @@ def whitelist_check(**default_kwargs: Container[int]) -> Callable[[Context], boo # as we have groups, we want to ensure that group commands inherit from the parent overridden_command: Union[commands.Command, commands.Group] = None for command in [ctx.command, *ctx.command.parents]: - print(command) if hasattr(command.callback, "override"): overridden_command = command break |