feat: format table

This commit is contained in:
Marcelo Trylesinski 2020-07-10 01:47:51 +02:00
parent c2d44ac780
commit df20c48eb1
2 changed files with 534 additions and 534 deletions

File diff suppressed because it is too large Load Diff

View File

@ -29,7 +29,7 @@ with open("results.json") as json_file:
writer = MarkdownTableWriter()
writer.headers = ["Project", "Dependencies"]
writer.value_matrix = [
[format_with_link(project), filter_list(dependencies)]
[format_with_link(project), ", ".join(filter_list(dependencies))]
for project, dependencies in data.items()
if (
len(filter_list(dependencies)) > 0