tests.objects.message   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 16
dl 0
loc 28
rs 10
c 0
b 0
f 0
1
# Copyright Pincer 2021-Present
0 ignored issues
show
introduced by
Missing module docstring
Loading history...
2
# Full MIT License can be found in `LICENSE` at the project root.
3
4
from pincer import __version__
5
from pincer.objects import Embed
6
7
print(
8
    Embed(
9
        title=f"Pincer - {__version__}",
10
        description=(
11
            "🚀 An asynchronous python API wrapper meant to replace"
12
            " discord.py\n> Snappy discord api wrapper written "
13
            "with aiohttp & websockets"
14
        ),
15
    )
16
    .add_field(
17
        name="**Github Repository**",
18
        value="> https://github.com/Pincer-org/Pincer",
19
    )
20
    .set_thumbnail(url="https://pincer.dev/img/icon.png")
21
    .set_image(
22
        url=(
23
            "https://repository-images.githubusercontent.com"
24
            "/400871418/045ebf39-7c6e-4c3a-b744-0c3122374203"
25
        )
26
    )
27
    .to_dict()
28
)
29