from aiogram import types as t from shared.instances import dp from utils import filters as f async def сосалка(msg: t.Message): text = msg.text or msg.caption if text.startswith("/"): return False with open(f"data/{msg.chat.id}", "a+") as file: file.write(text.replace("§", "") + "§") return False @dp.message_handler(f.message.has_text, сосалка, content_types=[t.ContentType.ANY]) async def ХУЙ(): pass