aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Anubhav <[email protected]>2020-09-05 21:28:53 +0530
committerGravatar GitHub <[email protected]>2020-09-05 21:28:53 +0530
commitc908cea40177f15648825525bdbe9af98daff06d (patch)
tree630ab264b2f741c2db2b3d93d7dd64cacd6b5c93
parentchanged search_description to s_desc cuz its failing E501 (diff)
changed final to titles_no_underscore
Co-authored-by: Shirayuki Nekomata <[email protected]>
-rw-r--r--bot/exts/evergreen/wikipedia.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/wikipedia.py b/bot/exts/evergreen/wikipedia.py
index 4dec8bdf..0463e7a7 100644
--- a/bot/exts/evergreen/wikipedia.py
+++ b/bot/exts/evergreen/wikipedia.py
@@ -41,7 +41,7 @@ class WikipediaCog(commands.Cog):
@commands.command(name="wikipedia", aliases=["wiki"])
async def w_pedia(self, ctx: commands.Context, *, search: str) -> None:
"""Gives list of item."""
- final = []
+ titles_no_underscore: List[str] = []
s_desc = ''
titles = await self.search_wikipedia(search)