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

pull/11945/head
Matthias 10 months ago
parent 25c24ddc9c
commit 30afedd4f8

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

Loading…
Cancel
Save