Added on_guild_channel_delete event abc

This commit is contained in:
Cora Cordes
2021-11-20 19:08:36 +01:00
parent 2ab2ef3776
commit 5e646d394b

View File

@@ -1,7 +1,12 @@
from abc import ABC, abstractmethod
import discord
class OnGuildChannelDeleteABC(ABC):
@abstractmethod
def __init__(self): pass
@abstractmethod
async def on_guild_channel_delete(self, channel: discord.abc.GuildChannel): pass