From 074b05f0b0ecc63fd002d998fe03888844d376ab Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 27 Feb 2023 22:25:42 +1000 Subject: [PATCH] Update discord/onboarding.py Co-authored-by: numbermaniac <5206120+numbermaniac@users.noreply.github.com> --- discord/onboarding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/onboarding.py b/discord/onboarding.py index ff0cfc699..96be087cd 100644 --- a/discord/onboarding.py +++ b/discord/onboarding.py @@ -99,7 +99,7 @@ class OnboardingPromptOption: @cached_slot_property('_cs_channels') def channels(self) -> List[Union[GuildChannel, Thread]]: - """List[Union[:class:`abc.GuildChannel`, :class:`Thread`]]: The list of channels which will be set visible if this option is selected.""" + """List[Union[:class:`abc.GuildChannel`, :class:`Thread`]]: The list of channels which will be made visible if this option is selected.""" it = filter(None, map(self.guild._resolve_channel, self.channel_ids)) return utils._unique(it)