I'm trying to execute this simple telegram bot but I get no output and I don't know what I'm doing wrong. This is the code:
from telegram import Update
from telegram.ext import Updater, CommandHandler, CallbackContext
def hello(update: Update, context: CallbackContext) -> None:
update.message.reply_text(f'Hello {update.effective_user.first_name}')
updater = Updater('my_token')
updater.dispatcher.add_handler(hello)
updater.start_polling()
updater.idle()