Passed
Pull Request — main (#106)
by Yohann
01:30
created

pincer.objects.guild.widget   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 11
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 __future__ import annotations
5
6
from dataclasses import dataclass
7
from typing import Optional, TYPE_CHECKING
8
9
from ...utils import APIObject
10
11
if TYPE_CHECKING:
12
    from ...utils import Snowflake
13
14
15
@dataclass
16
class GuildWidget(APIObject):
17
    """
18
    Represents a Discord Guild Widget object
19
20
    :param enabled:
21
        whether the widget is enabled
22
23
    :param channel_id:
24
        the widget channel id
25
    """
26
    enabled: bool
27
    channel_id: Optional[Snowflake]
0 ignored issues
show
introduced by
The variable Snowflake does not seem to be defined in case TYPE_CHECKING on line 11 is False. Are you sure this can never be the case?
Loading history...
28