Skip to content

Commit db80d94

Browse files
committed
Update client.py
1 parent b8bde7c commit db80d94

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

discord_slash/client.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,9 @@ def subcommand(self,
195195
auto_convert: dict = None,
196196
guild_ids: int = None):
197197
"""
198-
Decorator that registers subcommand.
199-
Unlike discord.py, you don't need base command.
198+
Decorator that registers subcommand.\n
199+
Unlike discord.py, you don't need base command.\n
200+
Not implemented.
200201
201202
Example:
202203
@@ -217,6 +218,7 @@ async def _group_say(ctx, _str):
217218
:param guild_ids: List of guild ID of where the command will be used. Default ``None``, which will be global command.
218219
:return:
219220
"""
221+
raise NotImplementedError
220222
def wrapper(cmd):
221223
return cmd
222224
return wrapper
@@ -291,6 +293,7 @@ async def on_socket_response(self, msg):
291293
async def handle_subcommand(self, ctx: model.SlashContext, data: dict):
292294
"""
293295
Coroutine for handling subcommand.
296+
Not implemented.
294297
295298
:param ctx:
296299
:param data:

0 commit comments

Comments
 (0)