[Webservice] Don't sort YAML keys on config changes
Description
PyYAML by default sorts all the keys when writing. This can make it harder to see what, if anything, has actually changed in a commit like this one:
This disables sorting keys, to hopefully make smaller diffs.
default_flow_style=False
is now the default in PyYAML, so I've stopped explicitly setting that.
How Has This Been Tested?
It hasn't; it's tricky to test this without changing real config, but the change is very simple.
Types of changes
- Bug fix (non-breaking change which fixes an issue)
Checklist:
- My code follows the code style of this project.