We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffaa7b6 commit df33cb8Copy full SHA for df33cb8
markdown_writer.py
@@ -54,8 +54,9 @@ def write_to_markdown(
54
report_file.write("No team members available.\n")
55
56
report_file.write("\n## All Contributors:\n")
57
- for contributor in all_contributors:
58
- report_file.write(f"- {contributor}\n")
+ if all_contributors:
+ for contributor in all_contributors:
59
+ report_file.write(f"- {contributor}\n")
60
61
report_file.write("\n## Innersource Contributors:\n")
62
if innersource_contributors:
0 commit comments