Browse Source

Added some comments

pull/56/head
Jari (LotU) 8 years ago
committed by GitHub
parent
commit
c1897fdc1d
  1. 4
      docs/bot_tutorial/message_embeds.md

4
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
Creating an embed is simple, and can be done like this: Creating an embed is simple, and can be done like this:
```py ```py
from disco.types.message import MessageEmbed from disco.types.message import MessageEmbed #We need this to create the embed
from datetime import datetime from datetime import datetime #We need this to set the timestamp
embed = MessageEmbed() embed = MessageEmbed()
``` ```

Loading…
Cancel
Save