Output.print_table with 1 column of data

Hi there,
I have a table with a single column and would love to have my data neatly aligned on the left

but here is what I have

    print([rvtlinkdocsName])
    output.print_table([rvtlinkdocsName], columns=["Files list"], formats='', title='', last_line_style='')

print(rvtlinkdocsName)
output.print_table(rvtlinkdocsName, columns=["Files list"], formats='', title='', last_line_style='')

I can’t get it to have my file list on one column only, aligned to the left.

It might be simple, but I don’t get it

my initial data looks like this
['TestCeramique', 'Projet1', 'TestCeramique']

reply to self :slight_smile:

    rvtlinkdocsNameFormated = []

    for i in rvtlinkdocsName:

        rvtlinkdocsNameFormated.append([i])

        for j in rvtlinkdocsNameFormated:

            j.append(' ')
2 Likes