Skip to content

Commit f499291

Browse files
committed
fix: typing.UndefinedOr -> undefined.UndefinedOr
1 parent eaf460d commit f499291

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hikari/impl/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3070,7 +3070,7 @@ async def create_guild_media_channel(
30703070
default_forum_layout: undefined.UndefinedOr[channels_.ForumLayoutType | int] = undefined.UNDEFINED,
30713071
default_sort_order: undefined.UndefinedOr[channels_.ForumSortOrderType | int] = undefined.UNDEFINED,
30723072
available_tags: undefined.UndefinedOr[typing.Sequence[channels_.ForumTag]] = undefined.UNDEFINED,
3073-
default_reaction_emoji: typing.UndefinedOr[str | emojis.Emoji | snowflakes.Snowflake] = undefined.UNDEFINED,
3073+
default_reaction_emoji: undefined.UndefinedOr[str | emojis.Emoji | snowflakes.Snowflake] = undefined.UNDEFINED,
30743074
reason: undefined.UndefinedOr[str] = undefined.UNDEFINED,
30753075
) -> channels_.GuildMediaChannel:
30763076
response = await self._create_guild_channel(

0 commit comments

Comments
 (0)