aboutsummaryrefslogtreecommitdiffstats
path: root/conversationstarters.py
diff options
context:
space:
mode:
Diffstat (limited to 'conversationstarters.py')
-rw-r--r--conversationstarters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/conversationstarters.py b/conversationstarters.py
index ef0fbc2c..4a2a3527 100644
--- a/conversationstarters.py
+++ b/conversationstarters.py
@@ -21,7 +21,7 @@ class ConvoStarters(commands.Cog):
async def convo_starter(self, ctx):
"""Responds with a random topic to start a conversation."""
- await ctx.send(f"{random.choice(starters['starters'])}")
+ await ctx.send(random.choice(starters['starters']))
def setup(bot):