aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2019-09-30 18:55:53 +0200
committerGravatar Akarys42 <[email protected]>2019-10-02 18:39:47 +0200
commit387bb50518e3766f543e23f8efe6821fb0527dd7 (patch)
treeebb53c05116e9c03b7083d6c3a6a250cb2d26933
parentMerge branch 'master' into reminder-up (diff)
Fix linting error
Fix some liting error Correct error Fix linting (maybe)
-rw-r--r--bot/cogs/reminders.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/bot/cogs/reminders.py b/bot/cogs/reminders.py
index 4a470a640..27954d10e 100644
--- a/bot/cogs/reminders.py
+++ b/bot/cogs/reminders.py
@@ -99,10 +99,11 @@ class Reminders(Scheduler, Cog):
embed.colour = Colour.blurple()
embed.set_author(
icon_url=Icons.remind_blurple,
- name="It has arrived!"
-
- if "jump_url" in reminder: # keep backward compatibility
- embed.description = f"Here's your reminder: `{reminder['content']}`. Jump back when you created the reminder : {jump_url}"
+ name="It has arrived!")
+
+ if "jump_url" in reminder: # keep backward compatibility
+ embed.description = (f"Here's your reminder: `{reminder['content']}`."
+ f"Jump back when you created the reminder : {reminder['jump_url']}")
else:
embed.description = f"Here's your reminder: `{reminder['content']}`"