Spaces:
Runtime error
Runtime error
Update main.py
Browse files
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()
|