From 128cb8ce299f023f6fab5749901464c3af41ac36 Mon Sep 17 00:00:00 2001 From: Richard Chien Date: Fri, 25 Jan 2019 16:25:00 +0800 Subject: [PATCH] Adjust --- nonebot/command/__init__.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/nonebot/command/__init__.py b/nonebot/command/__init__.py index 18010526..d5a7a42f 100644 --- a/nonebot/command/__init__.py +++ b/nonebot/command/__init__.py @@ -32,8 +32,11 @@ CommandHandler_T = Callable[['CommandSession'], Any] class Command: - __slots__ = ('name', 'func', 'permission', - 'only_to_me', 'privileged', 'args_parser_func') + __slots__ = ('name', 'func', + 'permission', + 'only_to_me', + 'privileged', + 'args_parser_func') def __init__(self, *, name: CommandName_T,