mirror of
https://github.com/Xevion/unbelievaselfbot.git
synced 2025-12-07 03:16:56 -06:00
16 lines
264 B
Python
16 lines
264 B
Python
from pprint import pprint
|
|
|
|
import discord
|
|
|
|
|
|
def print(embed: discord.Embed) -> None:
|
|
pprint((
|
|
embed.title,
|
|
embed.description,
|
|
embed.footer,
|
|
embed.color,
|
|
embed.fields,
|
|
embed.author,
|
|
embed.timestamp
|
|
))
|