From 3dfdce504622599980c28bdca49be32a5e0dd676 Mon Sep 17 00:00:00 2001 From: PyMaster <59120866+pystorage@users.noreply.github.com> Date: Sun, 6 Sep 2020 21:11:21 +0300 Subject: [PATCH] Delete __init__.py --- examples/bot/__init__.py | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 examples/bot/__init__.py diff --git a/examples/bot/__init__.py b/examples/bot/__init__.py deleted file mode 100644 index 4b4da42..0000000 --- a/examples/bot/__init__.py +++ /dev/null @@ -1,20 +0,0 @@ -from .config import (SESSION_NAME, API_ID, API_HASH, - BOT_TOKEN, APP_PLUGINS) -from pyrogram import Client - - -class App(Client): - def __init__(self): - super().__init__( - session_name=SESSION_NAME, - api_id=API_ID, - api_hash=API_HASH, - bot_token=BOT_TOKEN, - plugins=dict(root=APP_PLUGINS) - ) - - def start(self, *args): - super().start() - - def stop(self, *args): - super().stop()