From 11df0ab0fc60d9de1463e2207e2f73d7c89e9aa7 Mon Sep 17 00:00:00 2001 From: levina <82658782+levina-lab@users.noreply.github.com> Date: Tue, 2 Nov 2021 18:49:47 +0700 Subject: [PATCH] hmm --- main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index 5433d01..ff8ec60 100644 --- a/main.py +++ b/main.py @@ -1,14 +1,14 @@ import asyncio from program import BOT_ID, USERBOT_ID -from driver.veez import call_py, bot, uber +from driver.veez import call_py, bot, user from pytgcalls import idle -async def all_info(bot, uber): +async def all_info(bot, user): global BOT_ID, USERBOT_ID getme = await bot.get_me() - getme1 = await uber.get_me() + getme1 = await user.get_me() BOT_ID = getme.id USERBOT_ID = getme1.id @@ -19,7 +19,7 @@ async def mulai_bot(): print("[INFO]: STARTING PYTGCALLS CLIENT") await call_py.start() print("[INFO]: GENERATING CLIENT PROFILE") - await all_info(bot, uber) + await all_info(bot, user) await idle() print("[INFO]: STOPPING BOT") await bot.stop()