Skip to content

Commit 24b22b9

Browse files
committed
pylint: auto fixes
1 parent 794c844 commit 24b22b9

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

plugins/alive.py

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
from core.git import repo
55
from core.version import version
66
from telethon.errors import BotMethodInvalidError, ChatSendMediaForbiddenError
7-
from telethon.version import __version__
7+
from telethon.extensions import html, markdown
88
from telethon.utils import resolve_bot_file_id
9-
from telethon.extensions import markdown, html
9+
from telethon.version import __version__
10+
1011
from .. import *
1112

1213
buttons = [
@@ -77,14 +78,14 @@ async def alive_func(ult):
7778
else:
7879
parse = markdown
7980
als = get_string("alive_1",
80-
header,
81-
OWNER_NAME,
82-
f"{version} [{HOSTED_ON}]",
83-
uptime,
84-
python_version(),
85-
__version__,
86-
kk,
87-
)
81+
header,
82+
OWNER_NAME,
83+
f"{version} [{HOSTED_ON}]",
84+
uptime,
85+
python_version(),
86+
__version__,
87+
kk,
88+
)
8889

8990
if a := udB.get_key("ALIVE_EMOJI"):
9091
als = als.replace("✵", a)
@@ -121,8 +122,6 @@ async def alive_func(ult):
121122
)
122123

123124

124-
125-
126125
@in_pattern("alive", owner=True)
127126
async def inline_alive(ult):
128127
pic = udB.get_key("ALIVE_PIC")

0 commit comments

Comments
 (0)