From 8f9a69a70113a8020da1902d2efc631e3503fb8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20M=C3=B6lter?= <2929781+gmoelter@users.noreply.github.com> Date: Fri, 9 Jan 2026 21:53:20 +0100 Subject: [PATCH] Fix indentation when setting self.msg_id Setting of `self.msg_id` from `config` should not depend on the argument `clean` being True. --- sepaxml/shared.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sepaxml/shared.py b/sepaxml/shared.py index 6bdff06..114eded 100644 --- a/sepaxml/shared.py +++ b/sepaxml/shared.py @@ -51,8 +51,8 @@ def __init__(self, config, schema, clean=True): self._config['name'] = unidecode(self._config['name'])[:70] - if self._config.get('msg_id'): - self.msg_id = self._config['msg_id'][:35] + if self._config.get('msg_id'): + self.msg_id = self._config['msg_id'][:35] self._prepare_document() self._create_header()