fix(userbot): add missing safone.py imports, apply ruff --unsafe-fixes

- Add missing aiohttp, PIL, BytesIO imports to safone.py (F821 runtime bugs)
- Apply ruff --unsafe-fixes (27 fixes): ternary operators, .get() patterns,
  contextlib.suppress, enumerate(), collapsible if/else, remove .keys()
This commit is contained in:
2026-06-19 15:27:12 +02:00
parent c905bbd039
commit 20bce5b31c
20 changed files with 29 additions and 57 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ async def pdf2md(client: Client, message: Message):
if not message.reply_to_message.document:
await message.edit('Reply to a pdf file')
return
if not message.reply_to_message.document.mime_type == 'application/pdf':
if message.reply_to_message.document.mime_type != 'application/pdf':
await message.edit('Reply to a pdf file')
return
if gemini_key == '':