Passed
Push — main ( d1c48a...9c4d1d )
by Yohann
01:52 queued 11s
created

tests.objects.message   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 15
dl 0
loc 21
rs 10
c 0
b 0
f 0
1
from pincer.objects import Embed
0 ignored issues
show
introduced by
Missing module docstring
Loading history...
2
3
print(Embed(
4
        title="Pincer - 0.6.4",
5
        description=(
6
            "🚀 An asynchronous python API wrapper meant to replace"
7
            " discord.py\n> Snappy discord api wrapper written "
8
            "with aiohttp & websockets"
9
        )
10
    ).add_field(
11
        name="**Github Repository**",
12
        value="> https://github.com/Pincer-org/Pincer"
13
    ).set_thumbnail(
14
        url="https://pincer.dev/img/icon.png"
15
    ).set_image(
16
        url=(
17
            "https://repository-images.githubusercontent.com"
18
            "/400871418/045ebf39-7c6e-4c3a-b744-0c3122374203"
19
        )
20
    ).to_dict())
0 ignored issues
show
Coding Style introduced by
Final newline missing
Loading history...