From 6f43eee295ad5561543584baa2095199dba0af38 Mon Sep 17 00:00:00 2001 From: Vivaan Parashar Date: Fri, 12 Feb 2021 09:21:37 +0530 Subject: change docstring --- bot/exts/evergreen/stackoverflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bot/exts/evergreen/stackoverflow.py') diff --git a/bot/exts/evergreen/stackoverflow.py b/bot/exts/evergreen/stackoverflow.py index 54b6555d..06aa37e7 100644 --- a/bot/exts/evergreen/stackoverflow.py +++ b/bot/exts/evergreen/stackoverflow.py @@ -17,7 +17,7 @@ class Stackoverflow(commands.Cog): @commands.command(aliases=["so"]) @commands.cooldown(1, 15, commands.cooldowns.BucketType.user) async def stackoverflow(self, ctx: commands.Context, *, search_query: str) -> None: - """Sends the top 5 results from stackoverflow based on a search query.""" + """Sends the top 5 results of a search query from stackoverflow.""" async with self.bot.http_session.get(BASE_URL.format(query=quote_plus(search_query))) as response: data = await response.json() -- cgit v1.2.3