chore: use value instead of string to avoid "none" output in "marginmode"

This commit is contained in:
Matthias
2025-07-02 07:47:19 +02:00
parent 25c24ddc9c
commit 30afedd4f8

View File

@@ -13,4 +13,4 @@ class MarginMode(str, Enum):
NONE = ""
def __str__(self):
return f"{self.name.lower()}"
return f"{self.value.lower()}"