From 8954df4c1dd1b845957eac23e5dfe1fc80281abd Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 1 Mar 2024 00:30:38 -0500 Subject: [PATCH] fix(pterodactyl): fixed a docstring --- pterodactyl/pterodactyl.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 889ec80..d644331 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -87,7 +87,10 @@ class Pterodactyl(commands.Cog): @pterodactyl_config.command(name = "url") async def pterodactyl_config_base_url(self, ctx: commands.Context, *, base_url: str = None) -> None: - """Set the base URL of your Pterodactyl Panel. Please include the protocol (http/https).""" + """Set the base URL of your Pterodactyl Panel. + + Please include the protocol (http/https). + Example: `https://panel.example.com`""" if base_url is None: base_url = await config.base_url() return await ctx.send(f"Base URL is currently set to {base_url}")