From b2f43f39ba4c154c7814bb3f077c7a8d19e87784 Mon Sep 17 00:00:00 2001 From: albertony <12441419+albertony@users.noreply.github.com> Date: Fri, 11 Jul 2025 07:46:52 +0200 Subject: [PATCH] docs: fix markdownlint issues md007/ul-indent md004/ul-style (bin/update-authors.py) --- bin/update-authors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/update-authors.py b/bin/update-authors.py index b422c16a6..d63ea6016 100755 --- a/bin/update-authors.py +++ b/bin/update-authors.py @@ -23,7 +23,7 @@ def add_email(name, email): """ print("Adding %s <%s>" % (name, email)) with open(AUTHORS, "a+") as fd: - print(" * %s <%s>" % (name, email), file=fd) + print("- %s <%s>" % (name, email), file=fd) subprocess.check_call(["git", "commit", "-m", "Add %s to contributors" % name, AUTHORS]) def main():