lint: make ruff happy

This commit is contained in:
missytake
2025-05-15 13:05:22 +02:00
committed by holger krekel
parent 23655df08a
commit 15244f6462

View File

@@ -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):