Теперь Кью работает в режиме чтения

Мы сохранили весь контент, но добавить что-то новое уже нельзя

Выдаёт ошибкуюPython. aiogram

Вот кусочек кода:
moneypoints = 0
@dp.message_handler()
async def bot_message(message: types.Message):
if message.text == 'Персонаж🗿':
await message.answer('Это ты… \n Деньги: ' + str(moneypoints), '\n Еда:')
Выдавал раньше ошибку что надо с str, а теперь выдаёт другую ошибку:
ERROR:asyncio:Task exception was never retrieved 
future: <Task finished name='Task-9' coro=<Dispatcher._process_polling_updates() done, defined at C:\Users\GROVERT\AppData\Local\Programs\Python\Python311\Lib\site-packages\aiogram\dispatcher\dispatcher.py:407> exception=BadRequest('Unsupported parse_mode')> 
Traceback (most recent call last): 
File "C:\Users\GROVERT\AppData\Local\Programs\Python\Python311\Lib\site-packages\aiogram\dispatcher\dispatcher.py", line 415, in _process_polling_updates 
for responses in itertools.chain.from_iterable(await self.process_updates(updates, fast)): 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
File "C:\Users\GROVERT\AppData\Local\Programs\Python\Python311\Lib\site-packages\aiogram\dispatcher\dispatcher.py", line 235, in process_updates 
return await asyncio.gather(*tasks) 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
File "C:\Users\GROVERT\AppData\Local\Programs\Python\Python311\Lib\site-packages\aiogram\dispatcher\handler.py", line 117, in notify 
response = await handler_obj.handler(*args, **partial_data) 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
File "C:\Users\GROVERT\AppData\Local\Programs\Python\Python311\Lib\site-packages\aiogram\dispatcher\dispatcher.py", line 256, in process_update 
return await self.message_handlers.notify(update.message) 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
File "C:\Users\GROVERT\AppData\Local\Programs\Python\Python311\Lib\site-packages\aiogram\dispatcher\handler.py", line 117, in notify 
response = await handler_obj.handler(*args, **partial_data) 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
File "c:\Users\GROVERT\Desktop\mygametg\bot.py", line 29, in bot_message 
await message.answer('Это ты… \n Деньги: ' + str(moneypoints), '\n Еда:') 
File "C:\Users\GROVERT\AppData\Local\Programs\Python\Python311\Lib\site-packages\aiogram\types\message.py", line 413, in answer 
return await self.bot.send_message( 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
File "C:\Users\GROVERT\AppData\Local\Programs\Python\Python311\Lib\site-packages\aiogram\bot\bot.py", line 346, in send_message 
result = await self.request(api.Methods.SEND_MESSAGE, payload) 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
File "C:\Users\GROVERT\AppData\Local\Programs\Python\Python311\Lib\site-packages\aiogram\bot\base.py", line 236, in request 
return await api.make_request(await self.get_session(), self.server, self.__token, method, data, files, 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
File "C:\Users\GROVERT\AppData\Local\Programs\Python\Python311\Lib\site-packages\aiogram\bot\api.py", line 140, in make_request 
return check_result(method, response.content_type, response.status, await response.text()) 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
File "C:\Users\GROVERT\AppData\Local\Programs\Python\Python311\Lib\site-packages\aiogram\bot\api.py", line 115, in check_result 
exceptions.BadRequest.detect(description) 
File "C:\Users\GROVERT\AppData\Local\Programs\Python\Python311\Lib\site-packages\aiogram\utils\exceptions.py", line 141, in detect 
raise cls(description) 
aiogram.utils.exceptions.BadRequest: Unsupported parse_mode 
Что делать?
PythonБоты+3
IT-GOMETUR
  ·   · 210
Я очень рад быть частью этой группы и надеюсь...  · 7 янв 2023
await message.answer('Это ты… \nДеньги: ' + str(moneypoints) + '\nЕда:')