From 684f68ed0071b70c60aae20ba0a73ef6c5306545 Mon Sep 17 00:00:00 2001 From: dolfies Date: Sat, 6 May 2023 21:01:12 -0400 Subject: [PATCH] Correct StageInstance.discoverable documentation --- discord/stage_instance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/stage_instance.py b/discord/stage_instance.py index ae40c73b8..6a66a23b2 100644 --- a/discord/stage_instance.py +++ b/discord/stage_instance.py @@ -114,7 +114,7 @@ class StageInstance(Hashable): @property def discoverable(self) -> bool: - """Whether the stage instance is discoverable.""" + """:class:`bool`: Whether the stage instance is discoverable.""" return not self.discoverable_disabled @cached_slot_property('_cs_channel')