We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c37624 commit dbf1f6dCopy full SHA for dbf1f6d
discord/enums.py
@@ -615,7 +615,7 @@ class ApplicationType(Enum):
615
616
617
class StagePrivacyLevel(Enum):
618
- # public = 1 Deprecated
+ # public = 1 (deprecated)
619
closed = 2
620
guild_only = 2
621
discord/stage_instance.py
@@ -109,7 +109,7 @@ def channel(self) -> Optional[StageChannel]:
109
return self._state.get_channel(self.channel_id) # type: ignore
110
111
def is_public(self) -> bool:
112
- return self.privacy_level is StagePrivacyLevel.public
+ return False
113
114
async def edit(
115
self,
0 commit comments