mp-gh

Results 1 comments of mp-gh

I'm running into this as well: from tabulate import tabulate config_table_data = list() config_table_data.append(("a","value")) config_table_data.append(("b",None)) print(tabulate(config_table_data)) - ----- a value b - ----- print(tabulate(config_table_data,maxcolwidths=[20, 30])) Traceback (most recent call last):...