async def remove(self, ctx, user: discord.Member): if user.id not in Database.getblacklist(): Database.unblacklistUser(user.id) await ctx.send( f"{str(user)} got unnblacklisted from using EXCEED-BOT")
async def _list(self, ctx): return await ctx.send(Database.getblacklist())
from config import config