Compare commits

...

1 commit

Author SHA1 Message Date
gwen
aaf85cc268 string coercion for non str types output 2024-09-09 14:51:56 +02:00

View file

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