diff options
| author | 2019-04-04 14:00:37 +0100 | |
|---|---|---|
| committer | 2019-04-04 14:00:37 +0100 | |
| commit | e6d6b87a49473cacb54b0d6f7f9af7cc6e32bcb6 (patch) | |
| tree | a1c9f2ddd5d90143eee4634e62a42a70ab1ece9e /conversationstarters.py | |
| parent | Changed 'starters' -> 'topic' (diff) | |
Removed f-string
Co-Authored-By: RohanRadia <[email protected]>
Diffstat (limited to 'conversationstarters.py')
| -rw-r--r-- | conversationstarters.py | 2 | 
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): | 
