aboutsummaryrefslogtreecommitdiffstats
path: root/conversationstarters.py
diff options
context:
space:
mode:
authorGravatar scragly <[email protected]>2019-04-04 14:00:37 +0100
committerGravatar GitHub <[email protected]>2019-04-04 14:00:37 +0100
commite6d6b87a49473cacb54b0d6f7f9af7cc6e32bcb6 (patch)
treea1c9f2ddd5d90143eee4634e62a42a70ab1ece9e /conversationstarters.py
parentChanged 'starters' -> 'topic' (diff)
Removed f-string
Co-Authored-By: RohanRadia <[email protected]>
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):