pincer.middleware.thread_member_update   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 46
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 15
dl 0
loc 46
rs 10
c 0
b 0
f 0

2 Functions

Rating   Name   Duplication   Size   Complexity  
A export() 0 2 1
A thread_member_update_middleware() 0 23 1
1
# Copyright Pincer 2021-Present
2
# Full MIT License can be found in `LICENSE` at the project root.
3
4
"""sent when the thread member object for the current user is updated"""
5
6
from __future__ import annotations
7
8
from typing import TYPE_CHECKING
9
10
from ..objects import ThreadMember
11
12
if TYPE_CHECKING:
13
    from ..client import Client
14
    from ..core.gateway import Gateway
15
    from ..core.gateway import GatewayDispatch
16
17
18
async def thread_member_update_middleware(
19
    self: Client, gateway: Gateway, payload: GatewayDispatch
0 ignored issues
show
Unused Code introduced by
The argument gateway seems to be unused.
Loading history...
Coding Style introduced by
Wrong hanging indentation before block (add 4 spaces).
Loading history...
Unused Code introduced by
The argument self seems to be unused.
Loading history...
20
):
21
    """|coro|
22
23
    Middleware for the ``on_thread_member_update`` event.
24
25
    Parameters
26
    ----------
27
    payload : :class:`~pincer.core.gateway.GatewayDispatch`
28
        The data received from the thread member update event.
29
    gateway : :class:`~pincer.core.gateway.Gateway`
30
        The gateway for the current shard.
31
32
    Returns
33
    -------
34
    Tuple[:class:`str`, :class:`~pincer.objects.guild.thread.ThreadMember`]
35
        ``on_thread_member_update`` and an ``ThreadMember``
36
    """
37
38
    return (
39
        "on_thread_member_update",
40
        ThreadMember.from_dict(payload.data),
41
    )
42
43
44
def export():
0 ignored issues
show
introduced by
Missing function or method docstring
Loading history...
45
    return thread_member_update_middleware
46