Skip to content

Commit 9a2f883

Browse files
committed
wontfix whitespace
1 parent a2b5f7c commit 9a2f883

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/bib2readme.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,7 @@ def format_bibtex(entry) -> str:
9999
f"author = {{{' and '.join(str(person) for person in entry.persons.get('author', []))}}}"
100100
)
101101
bibtex_str = (
102-
f"@{bibtex_type}{{{bibtex_key},\n  "
103-
+ ",\n  ".join(bibtex_fields)
104-
+ "\n }"
102+
f"@{bibtex_type}{{{bibtex_key},\n " + ", ".join(bibtex_fields) + "\n }"
105103
)
106104
return bibtex_str
107105

0 commit comments

Comments
 (0)