@@ -41,8 +41,7 @@ async def get_channel_messages(
4141 self ,
4242 channel_id : "Snowflake_Type" ,
4343 limit : int = 50 ,
44- ) -> list [discord_typings .MessageData ]:
45- ...
44+ ) -> list [discord_typings .MessageData ]: ...
4645
4746 @overload
4847 async def get_channel_messages (
@@ -51,8 +50,7 @@ async def get_channel_messages(
5150 limit : int = 50 ,
5251 * ,
5352 around : "Snowflake_Type | None" = None ,
54- ) -> list [discord_typings .MessageData ]:
55- ...
53+ ) -> list [discord_typings .MessageData ]: ...
5654
5755 @overload
5856 async def get_channel_messages (
@@ -61,8 +59,7 @@ async def get_channel_messages(
6159 limit : int = 50 ,
6260 * ,
6361 before : "Snowflake_Type | None" = None ,
64- ) -> list [discord_typings .MessageData ]:
65- ...
62+ ) -> list [discord_typings .MessageData ]: ...
6663
6764 @overload
6865 async def get_channel_messages (
@@ -71,8 +68,7 @@ async def get_channel_messages(
7168 limit : int = 50 ,
7269 * ,
7370 after : "Snowflake_Type | None" = None ,
74- ) -> list [discord_typings .MessageData ]:
75- ...
71+ ) -> list [discord_typings .MessageData ]: ...
7672
7773 async def get_channel_messages (
7874 self ,
@@ -263,8 +259,7 @@ async def create_channel_invite(
263259 unique : bool = False ,
264260 * ,
265261 reason : str | None = None ,
266- ) -> discord_typings .InviteData :
267- ...
262+ ) -> discord_typings .InviteData : ...
268263
269264 @overload
270265 async def create_channel_invite (
@@ -277,8 +272,7 @@ async def create_channel_invite(
277272 * ,
278273 target_user_id : "Snowflake_Type | None" = None ,
279274 reason : str | None = None ,
280- ) -> discord_typings .InviteData :
281- ...
275+ ) -> discord_typings .InviteData : ...
282276
283277 @overload
284278 async def create_channel_invite (
@@ -291,8 +285,7 @@ async def create_channel_invite(
291285 * ,
292286 target_application_id : "Snowflake_Type | None" = None ,
293287 reason : str | None = None ,
294- ) -> discord_typings .InviteData :
295- ...
288+ ) -> discord_typings .InviteData : ...
296289
297290 async def create_channel_invite (
298291 self ,
@@ -600,6 +593,7 @@ async def create_tag(
600593 !!! note
601594 Can either have an `emoji_id` or an `emoji_name`, but not both.
602595 `emoji_id` is meant for custom emojis, `emoji_name` is meant for unicode emojis.
596+
603597 """
604598 payload : PAYLOAD_TYPE = {
605599 "name" : name ,
@@ -635,6 +629,7 @@ async def edit_tag(
635629 !!! note
636630 Can either have an `emoji_id` or an `emoji_name`, but not both.
637631 emoji`_id is meant for custom emojis, `emoji_name` is meant for unicode emojis.
632+
638633 """
639634 payload : PAYLOAD_TYPE = {
640635 "name" : name ,
@@ -655,6 +650,7 @@ async def delete_tag(self, channel_id: "Snowflake_Type", tag_id: "Snowflake_Type
655650 Args:
656651 channel_id: The ID of the forum channel to delete tag it.
657652 tag_id: The ID of the tag to delete
653+
658654 """
659655 result = await self .request (
660656 Route ("DELETE" , "/channels/{channel_id}/tags/{tag_id}" , channel_id = channel_id , tag_id = tag_id )
0 commit comments