aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Derek <[email protected]>2019-01-06 19:16:15 -0500
committerGravatar Derek <[email protected]>2019-01-06 19:16:15 -0500
commitebad04f068598ddce567c2f855172206d0bb4e21 (patch)
treee5ae0c3b9955239eddb4d8322c5a010d839326e1
parentAdd free command (diff)
Change single quotes to double quotes for the sake of consistency
-rw-r--r--bot/cogs/free.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/free.py b/bot/cogs/free.py
index e50058106..73946dec1 100644
--- a/bot/cogs/free.py
+++ b/bot/cogs/free.py
@@ -70,9 +70,9 @@ class Free:
minutes, seconds = divmod(inactive, 60)
if minutes > 60:
hours, minutes = divmod(minutes, 60)
- embed.description += f'{i}. <#{ID}> inactive for {hours}h{minutes}m{seconds}s\n\n'
+ embed.description += f"{i}. <#{ID}> inactive for {hours}h{minutes}m{seconds}s\n\n"
else:
- embed.description += f'{i}. <#{ID}> inactive for {minutes}m{seconds}s\n\n'
+ embed.description += f"{i}. <#{ID}> inactive for {minutes}m{seconds}s\n\n"
embed.description += ("**\nThese channels aren't guaranteed to be free, "
"so use your best judgement and check for yourself.")