in modular_cli/service/help_client.py [0:0]
def prettify_group_subgroups(groups_subgroups_meta):
table_data = []
for each_param in groups_subgroups_meta:
table_data.append([
'\t',
'\t',
f'{each_param}'])
return tabulate(tabular_data=table_data, tablefmt="plain")