From 4b59defca27ec83e2e249435e596df641af0b41e Mon Sep 17 00:00:00 2001 From: dolfies Date: Tue, 6 Sep 2022 19:04:32 -0400 Subject: [PATCH] Get tests to pass --- discord/commands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/discord/commands.py b/discord/commands.py index cc245e5d6..e7928dcd7 100644 --- a/discord/commands.py +++ b/discord/commands.py @@ -199,7 +199,9 @@ class BaseCommand(ApplicationCommand, Hashable): '_default_member_permissions', ) - def __init__(self, *, state: ConnectionState, data: Dict[str, Any], channel: Optional[Messageable] = None, **kwargs) -> None: + def __init__( + self, *, state: ConnectionState, data: Dict[str, Any], channel: Optional[Messageable] = None, **kwargs + ) -> None: self._state = state self._data = data self.name = data['name']