Can't instantiate abstract class IsAdminFilter with abstrat method check.
Долгое время уже прыгаю по сайтам, но так и не понял что нужно сделать, помогите пожалуйста.
Код прикрепил ниже.
from abc import ABC, abstractmethod
from aiogram import types
from aiogram.dispatcher.filters import BoundFilter
from required import validate
class IsAdminFilter(BoundFilter):
key = 'is_admin'
def __init__(self, is_admin: bool):
self.is_admin = is_admi
async def check(self, message: types.Message):
member = await message.bot.get_chat_member(message.from_user.id, message.chat.id)
return member.is_chat_admin() == self.is_admin