This website requires JavaScript.
Explore
Help
Register
Sign In
MarseyWorld
/
MarseyWorld
Watch
10
Star
10
Fork
You've already forked MarseyWorld
0
Code
Issues
2
Pull Requests
Packages
Releases
Wiki
Activity
0a9e7b3ef4
MarseyWorld
/
files
/
__init__.py
2 lines
1 B
Raw
Normal View
History
Unescape
Escape
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
2022-09-29 05:43:29 +00:00