Add trailing final newlines to source files.

Touched a ton of files to finally standardize on having trailing
final newlines, as best practice recommends and so our devs stop
accidentally fighting each other over it.

This was performed automatically with the following:
git ls-files -z '*.py' | while IFS= read -rd '' f; \
    do tail -c1 < "$f" | read -r _ || echo >> "$f"; done
git ls-files -z '*.css' | while IFS= read -rd '' f; \
    do tail -c1 < "$f" | read -r _ || echo >> "$f"; done
remotes/1693176582716663532/tmp_refs/heads/watchparty
Snakes 2022-09-29 01:43:29 -04:00
parent 11a9efb7cb
commit 4a54c6219a
Signed by: Snakes
GPG Key ID: E745A82778055C7E
58 changed files with 58 additions and 57 deletions

View File

@ -0,0 +1 @@