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,
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:
You can’t perform that action at this time.
0 commit comments