From 15244f6462f88750271cd3a42a10eb76488e62a3 Mon Sep 17 00:00:00 2001 From: missytake Date: Thu, 15 May 2025 13:05:22 +0200 Subject: [PATCH] lint: make ruff happy --- chatmaild/src/chatmaild/filtermail.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/chatmaild/src/chatmaild/filtermail.py b/chatmaild/src/chatmaild/filtermail.py index 6eb44d32..f8d755a9 100644 --- a/chatmaild/src/chatmaild/filtermail.py +++ b/chatmaild/src/chatmaild/filtermail.py @@ -173,7 +173,12 @@ async def asyncmain_beforequeue(config, mode): else: port = config.filtermail_smtp_port_incoming handler = IncomingBeforeQueueHandler(config) - HackedController(handler, hostname="127.0.0.1", port=port, data_size_limit=config.max_message_size).start() + HackedController( + handler, + hostname="127.0.0.1", + port=port, + data_size_limit=config.max_message_size, + ).start() def recipient_matches_passthrough(recipient, passthrough_recipients):