Add missing ] in docs for StageInstance.channel

This commit is contained in:
MrKomodoDragon 2021-08-10 19:12:36 -07:00 committed by GitHub
parent dc9c224b54
commit a9d9f496f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,7 +105,7 @@ class StageInstance(Hashable):
@cached_slot_property('_cs_channel')
def channel(self) -> Optional[StageChannel]:
"""Optional[:class:`StageChannel`: The guild that stage instance is running in."""
"""Optional[:class:`StageChannel`]: The channel that stage instance is running in."""
return self._state.get_channel(self.channel_id)
def is_public(self) -> bool: