trivial: add trailing comma to list element

Python syntax allows a comma after the last element of a list, and
having one helps avoid surprises in the event the lines of the list
are rearranged.
This commit is contained in:
G. Branden Robinson
2019-08-26 14:29:29 +10:00
parent 3b12f529d7
commit d09cdc8329

View File

@@ -41,7 +41,7 @@ DEPS = [
'pyfdt',
'cmake-format==0.4.5',
'guardonce',
'autopep8==1.4.3'
'autopep8==1.4.3',
]
setup(