Codefix: do not remove (last) newline when sorting doxygen warnings

This commit is contained in:
Rubidium
2026-02-21 18:54:20 +01:00
committed by rubidium42
parent 504b5e656e
commit 5b37a7b35c
+1
View File
@@ -21,6 +21,7 @@ def main():
warnings = sorted(set(warnings)) warnings = sorted(set(warnings))
with open(sys.argv[2], "w") as out: with open(sys.argv[2], "w") as out:
out.write("\n".join(warnings)) out.write("\n".join(warnings))
out.write("\n")
print("Doxygen warnings sorted successfully.") print("Doxygen warnings sorted successfully.")
if __name__ == "__main__": if __name__ == "__main__":