From e1a02c3a0cd716c75298d7fb5ccf5004c03ed88c Mon Sep 17 00:00:00 2001 From: Tofik Denianto <77754555+tofikdn@users.noreply.github.com> Date: Sat, 30 Oct 2021 02:19:55 +0700 Subject: [PATCH] no --- program/__main__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/program/__main__.py b/program/__main__.py index 5db889a..3c4893b 100644 --- a/program/__main__.py +++ b/program/__main__.py @@ -5,9 +5,9 @@ from pytgcalls import idle as engine from driver.veez import bot, call_py from program import __version__ -await bot.start() +bot.start() print(f"program v{__version__} started !") -await call_py.start() +call_py.start() print("program client started !") -await engine() -await idle() +engine() +idle()