mirror of
https://github.com/MelisaDev/melisa.git
synced 2024-11-11 19:07:28 +03:00
removed unused types
This commit is contained in:
parent
91d3ed6882
commit
087ad2d593
2 changed files with 21 additions and 21 deletions
|
@ -311,9 +311,9 @@ class MessageableChannel(Channel):
|
||||||
self,
|
self,
|
||||||
limit: int = 50,
|
limit: int = 50,
|
||||||
*,
|
*,
|
||||||
before: Optional[Union[int, Snowflake]] = None,
|
before: Optional[Snowflake] = None,
|
||||||
after: Optional[Union[int, Snowflake]] = None,
|
after: Optional[Snowflake] = None,
|
||||||
around: Optional[Union[int, Snowflake]] = None,
|
around: Optional[Snowflake] = None,
|
||||||
) -> AsyncIterator[Dict[str, Any]]:
|
) -> AsyncIterator[Dict[str, Any]]:
|
||||||
"""|coro|
|
"""|coro|
|
||||||
|
|
||||||
|
@ -328,13 +328,13 @@ class MessageableChannel(Channel):
|
||||||
|
|
||||||
Parameters
|
Parameters
|
||||||
----------
|
----------
|
||||||
limit : Optional[Union[:class:`int`, :class:`str`, :class:`~.melisa.Snowflake`]]
|
limit : Optional[:class:`~.melisa.Snowflake`]
|
||||||
Max number of messages to return (1-100).
|
Max number of messages to return (1-100).
|
||||||
around : Optional[Union[:class:`int`, :class:`str`, :class:`~.melisa.Snowflake`]]
|
around : Optional[:class:`~.melisa.Snowflake`]
|
||||||
Get messages around this message ID.
|
Get messages around this message ID.
|
||||||
before : Optional[Union[:class:`int`, :class:`str`, :class:`~.melisa.Snowflake`]]
|
before : Optional[:class:`~.melisa.Snowflake`]
|
||||||
Get messages before this message ID.
|
Get messages before this message ID.
|
||||||
after : Optional[Union[:class:`int`, :class:`str`, :class:`~.melisa.Snowflake`]]
|
after : Optional[:class:`~.melisa.Snowflake`]
|
||||||
Get messages after this message ID.
|
Get messages after this message ID.
|
||||||
|
|
||||||
Raises
|
Raises
|
||||||
|
@ -469,9 +469,9 @@ class MessageableChannel(Channel):
|
||||||
self,
|
self,
|
||||||
limit: int = 50,
|
limit: int = 50,
|
||||||
*,
|
*,
|
||||||
before: Optional[Union[int, str, Snowflake]] = None,
|
before: Optional[Snowflake] = None,
|
||||||
after: Optional[Union[int, str, Snowflake]] = None,
|
after: Optional[Snowflake] = None,
|
||||||
around: Optional[Union[int, str, Snowflake]] = None,
|
around: Optional[Snowflake] = None,
|
||||||
reason: Optional[str] = None,
|
reason: Optional[str] = None,
|
||||||
):
|
):
|
||||||
"""|coro|
|
"""|coro|
|
||||||
|
@ -481,13 +481,13 @@ class MessageableChannel(Channel):
|
||||||
|
|
||||||
Parameters
|
Parameters
|
||||||
----------
|
----------
|
||||||
limit : Optional[Union[:class:`int`, :class:`str`, :class:`~.melisa.Snowflake`]]
|
limit : Optional[:class:`~.melisa.Snowflake`]
|
||||||
Max number of messages to purge.
|
Max number of messages to purge.
|
||||||
around : Optional[Union[:class:`int`, :class:`str`, :class:`~.melisa.Snowflake`]]
|
around : Optional[:class:`~.melisa.Snowflake`]
|
||||||
Get messages around this message ID.
|
Get messages around this message ID.
|
||||||
before : Optional[Union[:class:`int`, :class:`str`, :class:`~.melisa.Snowflake`]]
|
before : Optional[:class:`~.melisa.Snowflake`]
|
||||||
Get messages before this message ID.
|
Get messages before this message ID.
|
||||||
after : Optional[Union[:class:`int`, :class:`str`, :class:`~.melisa.Snowflake`]]
|
after : Optional:class:`~.melisa.Snowflake`]
|
||||||
Get messages after this message ID.
|
Get messages after this message ID.
|
||||||
reason: Optional[:class:`str`]
|
reason: Optional[:class:`str`]
|
||||||
The reason of the channel purge operation.
|
The reason of the channel purge operation.
|
||||||
|
@ -498,7 +498,7 @@ class MessageableChannel(Channel):
|
||||||
The request to perform the action failed with other http exception.
|
The request to perform the action failed with other http exception.
|
||||||
ForbiddenError
|
ForbiddenError
|
||||||
You do not have proper permissions to do the actions required.
|
You do not have proper permissions to do the actions required.
|
||||||
(You must have **MANAGE_MESSAGES** permission)
|
(You must have ``MANAGE_MESSAGES`` permission)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
iterator = self.history(
|
iterator = self.history(
|
||||||
|
@ -631,7 +631,7 @@ class Thread(MessageableChannel):
|
||||||
|
|
||||||
async def add_user(
|
async def add_user(
|
||||||
self,
|
self,
|
||||||
user_id: Union[int, Snowflake]
|
user_id: Snowflake
|
||||||
) -> None:
|
) -> None:
|
||||||
"""|coro|
|
"""|coro|
|
||||||
|
|
||||||
|
@ -643,7 +643,7 @@ class Thread(MessageableChannel):
|
||||||
|
|
||||||
Parameters
|
Parameters
|
||||||
----------
|
----------
|
||||||
user_id: Union[int, :class:`~melisa.utils.Snowflake`]
|
user_id: :class:`~melisa.utils.Snowflake`
|
||||||
Id of user to add to the thread.
|
Id of user to add to the thread.
|
||||||
|
|
||||||
Raises
|
Raises
|
||||||
|
@ -658,7 +658,7 @@ class Thread(MessageableChannel):
|
||||||
|
|
||||||
async def remove_user(
|
async def remove_user(
|
||||||
self,
|
self,
|
||||||
user_id: Union[int, Snowflake]
|
user_id: Snowflake
|
||||||
) -> None:
|
) -> None:
|
||||||
"""|coro|
|
"""|coro|
|
||||||
|
|
||||||
|
@ -668,7 +668,7 @@ class Thread(MessageableChannel):
|
||||||
|
|
||||||
Parameters
|
Parameters
|
||||||
----------
|
----------
|
||||||
user_id: Union[int, :class:`~melisa.utils.Snowflake`]
|
user_id: :class:`~melisa.utils.Snowflake`
|
||||||
Id of user to add to the thread.
|
Id of user to add to the thread.
|
||||||
|
|
||||||
Raises
|
Raises
|
||||||
|
|
|
@ -96,7 +96,7 @@ class MessageFlags(IntEnum):
|
||||||
return self.value
|
return self.value
|
||||||
|
|
||||||
|
|
||||||
@dataclass(repl=False)
|
@dataclass(repr=False)
|
||||||
class Message(APIModelBase):
|
class Message(APIModelBase):
|
||||||
"""Represents a message sent in a channel within Discord.
|
"""Represents a message sent in a channel within Discord.
|
||||||
|
|
||||||
|
@ -146,7 +146,7 @@ class Message(APIModelBase):
|
||||||
Sent with Rich Presence-related chat embeds
|
Sent with Rich Presence-related chat embeds
|
||||||
application: :class:`typing.Any`
|
application: :class:`typing.Any`
|
||||||
Sent with Rich Presence-related chat embeds
|
Sent with Rich Presence-related chat embeds
|
||||||
application_id: :class:`~melisa.utils.types.Snowflake`
|
application_id: :class:`~melisa.Snowflake`
|
||||||
If the message is an Interaction or application-owned webhook, this is the id of the application
|
If the message is an Interaction or application-owned webhook, this is the id of the application
|
||||||
message_reference: :class:`typing.Any`
|
message_reference: :class:`typing.Any`
|
||||||
Data showing the source of a crosspost, channel follow add, pin, or reply message
|
Data showing the source of a crosspost, channel follow add, pin, or reply message
|
||||||
|
|
Loading…
Reference in a new issue