Atualli commited on
Commit
2bd153a
·
verified ·
1 Parent(s): 342d8f3

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +3 -1
main.py CHANGED
@@ -1,7 +1,9 @@
1
  from telegram import Update
2
  from telegram.ext import ApplicationBuilder, CommandHandler, MessageHandler, ContextTypes, filters
 
 
 
3
 
4
- TOKEN = os.environ.get('TELEGRAM_TOKEN')
5
 
6
  async def responder(update: Update, context: ContextTypes.DEFAULT_TYPE):
7
  msg = update.message.text.lower()
 
1
  from telegram import Update
2
  from telegram.ext import ApplicationBuilder, CommandHandler, MessageHandler, ContextTypes, filters
3
+ import os
4
+
5
+ TOKEN = os.environ.get("TELEGRAM_TOKEN")
6
 
 
7
 
8
  async def responder(update: Update, context: ContextTypes.DEFAULT_TYPE):
9
  msg = update.message.text.lower()