Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
File "C:\Users\79832\Desktop\School\handlers\admin.py", line 58, in <module> @dp.message_handler(Text(equals='отмена', ignor_case=True), state="*") TypeError: Text.__init__() got an unexpected keyword argument 'ignor_case'
>>> class Myclass: def __init__(self, x, y): self.x = x self.y = y >>> a = Myclass(x=5, y=6) >>> b = Myclass(x=5, y=6, z=7) Traceback (most recent call last): File "<pyshell#14>", line 1, in <module> b = Myclass(x=5, y=6, z=7) TypeError: __init__() got an unexpected keyword argument 'z' >>>