From c1897fdc1db76b787aec4e0eea0921ebc80aeaaf Mon Sep 17 00:00:00 2001 From: "Jari (LotU)" Date: Fri, 8 Sep 2017 10:47:35 +0200 Subject: [PATCH] Added some comments --- docs/bot_tutorial/message_embeds.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/bot_tutorial/message_embeds.md b/docs/bot_tutorial/message_embeds.md index 3ada279..7f8db54 100644 --- a/docs/bot_tutorial/message_embeds.md +++ b/docs/bot_tutorial/message_embeds.md @@ -21,8 +21,8 @@ Next to these, you can set the embeds color, which will set the color of the lef ## Creating an embed Creating an embed is simple, and can be done like this: ```py -from disco.types.message import MessageEmbed -from datetime import datetime +from disco.types.message import MessageEmbed #We need this to create the embed +from datetime import datetime #We need this to set the timestamp embed = MessageEmbed() ```