Собственно сама ошибка:
aiogram.utils.exceptions.TerminatedByOtherGetUpdates: Terminated by other getupdates request; make sure that only one bot instance is running
И код:
from aiogram import Dispatcher, Bot, executor
from aiogram.types import Message
from config import TOKEN
import messages as ms
bot = Bot(TOKEN)
dp = Dispatcher(bot)
@dp.message_handler(commands=['start'])
async def start_cmd(message: Message):
await bot.send_message(message.from_user.id, ms.start_message)
executor.start_polling(dp, skip_updates=True)
Работаю в PyCharm.
Решения в других ответах на эту ошибку не помогают.