Skip to content

Commit e55d93b

Browse files
fix: Resolve cell rendering error in OBJ plugin (#617)
1 parent 0c8920e commit e55d93b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linodecli/plugins/obj/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def _borderless_table(data):
125125
"""
126126
tab = Table.grid(padding=(0, 2, 0, 2))
127127
for row in data:
128-
tab.add_row(*row)
128+
tab.add_row(*[str(v) for v in row])
129129

130130
return tab
131131

0 commit comments

Comments
 (0)