File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -195,8 +195,9 @@ def subcommand(self,
195
195
auto_convert : dict = None ,
196
196
guild_ids : int = None ):
197
197
"""
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.
200
201
201
202
Example:
202
203
@@ -217,6 +218,7 @@ async def _group_say(ctx, _str):
217
218
:param guild_ids: List of guild ID of where the command will be used. Default ``None``, which will be global command.
218
219
:return:
219
220
"""
221
+ raise NotImplementedError
220
222
def wrapper (cmd ):
221
223
return cmd
222
224
return wrapper
@@ -291,6 +293,7 @@ async def on_socket_response(self, msg):
291
293
async def handle_subcommand (self , ctx : model .SlashContext , data : dict ):
292
294
"""
293
295
Coroutine for handling subcommand.
296
+ Not implemented.
294
297
295
298
:param ctx:
296
299
:param data:
You can’t perform that action at this time.
0 commit comments