diff --git a/info/info.py b/info/info.py index 82efce5..24ecf77 100644 --- a/info/info.py +++ b/info/info.py @@ -505,8 +505,15 @@ class Info(commands.Cog): @app_commands.command() @app_commands.guild_only() async def roleinfo(self, interaction: discord.Interaction, role: discord.Role, list_permissions: bool = False): - """Gives information on a specific role. - `list_permissions` is ignored if the role you're checking has the `Administrator` permission.""" + """Gives information on a given role. + + Parameters + ----------- + role: discord.Role + The role you're checking + list_permissions: bool + Whether or not to list permissions. Ignored if the role has Administrator. + """ try: icon = role.display_icon if isinstance(icon, discord.Asset):