File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 39
39
40
40
if TYPE_CHECKING :
41
41
from cogs .tickets import Tickets
42
+
42
43
from rodhaj import Rodhaj
43
44
44
45
@@ -791,7 +792,8 @@ async def config_options(
791
792
792
793
@is_manager ()
793
794
@commands .guild_only ()
794
- @config .group (name = "help" , aliases = ["info" ])
795
+ @config .command (name = "help" , aliases = ["info" ])
796
+ @app_commands .describe (option = "Configuration option to use for lookup" )
795
797
async def config_help (
796
798
self , ctx : GuildContext , option : Annotated [str , ConfigKeyConverter ]
797
799
) -> None :
@@ -804,7 +806,7 @@ async def config_help(
804
806
805
807
@is_manager ()
806
808
@commands .guild_only ()
807
- @config_help .command (name = "all" )
809
+ @config .command (name = "help- all" )
808
810
async def config_help_all (self , ctx : GuildContext ):
809
811
"""Shows all possible help information for all configurations"""
810
812
# We need to separate this since we are using the key converter. If it is an invalid option, it passes back None,
You can’t perform that action at this time.
0 commit comments