align dictionary values and add comma to end of dict.

This commit is contained in:
Joey de l'Arago 2022-11-28 09:14:42 +01:00
parent a809e5a91c
commit 3eb5f91fd6

View file

@ -12,7 +12,7 @@ from .formatter import FileFormatter
TOP_LEVEL_SORT_PRIORITY = { TOP_LEVEL_SORT_PRIORITY = {
"version": "0", "version": "0",
"name": "1", "name": "1",
"inherits": "3" "inherits": "3",
} }
METADATA_SORT_PRIORITY = { METADATA_SORT_PRIORITY = {
@ -20,7 +20,7 @@ METADATA_SORT_PRIORITY = {
"author": "1", "author": "1",
"manufacturer": "2", "manufacturer": "2",
"file_formats": "3", "file_formats": "3",
"platform" : "4" "platform": "4",
} }