string coercion for non str types output

This commit is contained in:
gwen 2024-09-09 14:51:56 +02:00
parent 1b3ae40dce
commit aaf85cc268

View file

@ -276,6 +276,7 @@ class OutputFamily:
val = ''
if idx < len_default_value:
if val:
val = str(val)
val += ' '
default = default_value[idx]
else: