mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 17:44:50 +00:00
Fix import
This commit is contained in:
parent
87248f977c
commit
ec4b01eb85
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
from logging import basicConfig, FileHandler, StreamHandler, INFO
|
||||
from logging import getLogger, basicConfig, FileHandler, StreamHandler, INFO
|
||||
import time
|
||||
from pyrogram import Client
|
||||
from misskaty.vars import API_ID, API_HASH, BOT_TOKEN, USER_SESSION
|
||||
|
|
@ -8,7 +8,7 @@ basicConfig(
|
|||
handlers=[FileHandler("MissKatyLogs.txt"), StreamHandler()],
|
||||
level=INFO,
|
||||
)
|
||||
logging.getLogger("pyrogram").setLevel(logging.WARNING)
|
||||
getLogger("pyrogram").setLevel(logging.WARNING)
|
||||
|
||||
MOD_LOAD = []
|
||||
MOD_NOLOAD = []
|
||||
|
|
|
|||
Loading…
Reference in a new issue