Не запускается бот телеграмм, и выдаёт такие ошибки: (Import "aiogram" could not be resolved),(Import "aiogram.types" could not be resolved). Вот код:
import asyncio
from aiogram import Bot, Dispatcher
from aiogram.types import Message
bot = Bot(token='7483880038:AAFLIwaWsb_v5cY40Tc5BSHkwEW0iAiNObc')
dp = Dispatcher()
@dp.message()
async def cmd_start(message: Message):
await message.answer('Привет')
await message.reply('Как дела?')
async def main():
await dp.start_polling(bot)
if __name__== '__main__':
asyncio.run(main())