diff options
Diffstat (limited to 'bot/decorators.py')
-rw-r--r-- | bot/decorators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/decorators.py b/bot/decorators.py index d7ce29cb..8748fd83 100644 --- a/bot/decorators.py +++ b/bot/decorators.py @@ -129,7 +129,7 @@ def override_in_channel(channels: typing.Tuple[int] = None) -> typing.Callable: This decorator has to go before (below) below the `command` decorator. """ - def inner(func: typing.Callable): + def inner(func: typing.Callable) -> typing.Callable: func.in_channel_override = channels return func |