chore(userbot): apply ruff check --fix and ruff format

- ruff check --fix: 210 auto-fixed errors (import sorting, trailing
  whitespace, unused imports, f-string fixups, deprecated annotations)
- ruff format: 104 files reformatted to consistent style
- 268 non-auto-fixable issues remain (S113 requests timeout, etc.)
This commit is contained in:
2026-06-19 12:19:01 +02:00
parent 95cec59263
commit 7ba6bc44f2
104 changed files with 4338 additions and 5319 deletions
+10 -13
View File
@@ -18,41 +18,38 @@ import os
from pyrogram import Client, filters
from pyrogram.types import Message
from utils.misc import modules_help, prefix
from utils.scripts import format_exc, format_module_help, format_small_module_help
@Client.on_message(filters.command(["sendmod", "sm"], prefix) & filters.me)
@Client.on_message(filters.command(['sendmod', 'sm'], prefix) & filters.me)
async def sendmod(client: Client, message: Message):
if len(message.command) == 1:
await message.edit("<b>Module name to send is not provided</b>")
await message.edit('<b>Module name to send is not provided</b>')
return
await message.edit("<b>Dispatching...</b>")
await message.edit('<b>Dispatching...</b>')
try:
module_name = message.command[1].lower()
if module_name in modules_help:
text = format_module_help(module_name)
if len(text) >= 1024:
text = format_small_module_help(module_name)
if os.path.isfile(f"modules/{module_name}.py"):
await client.send_document(
message.chat.id, f"modules/{module_name}.py", caption=text
)
elif os.path.isfile(f"modules/custom_modules/{module_name.lower()}.py"):
if os.path.isfile(f'modules/{module_name}.py'):
await client.send_document(message.chat.id, f'modules/{module_name}.py', caption=text)
elif os.path.isfile(f'modules/custom_modules/{module_name.lower()}.py'):
await client.send_document(
message.chat.id,
f"modules/custom_modules/{module_name}.py",
f'modules/custom_modules/{module_name}.py',
caption=text,
)
await message.delete()
else:
await message.edit(f"<b>Module {module_name} not found!</b>")
await message.edit(f'<b>Module {module_name} not found!</b>')
except Exception as e:
await message.edit(format_exc(e))
modules_help["sendmod"] = {
"sendmod [module_name]": "Send module to interlocutor",
modules_help['sendmod'] = {
'sendmod [module_name]': 'Send module to interlocutor',
}