diff --git a/discord/abc.py b/discord/abc.py index 7ed1b5839..ae8d0bb88 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -363,6 +363,9 @@ class PrivateChannel(Snowflake, Protocol): def _add_call(self, **kwargs): raise NotImplementedError + def _update(self, **kwargs) -> None: + raise NotImplementedError + class _Overwrites: __slots__ = ('id', 'allow', 'deny', 'type')