This commit is contained in:
neo-dl 2022-10-19 13:02:12 +02:00
parent 44546e390a
commit 2d77c5056a

View File

@ -362,6 +362,8 @@ class Test(Widget):
v = "-"
elif isinstance(v, float):
v = f"{v:.1f}"
if not isinstance(v, str):
v = str(v)
return v
def print(self, archived, label):