gitweb: Fix flake8 error

Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
James Valleroy 2019-10-20 10:58:20 -04:00
parent 3001099cda
commit 91da0996a4
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -34,23 +34,19 @@ clients = validate([
{ {
'name': 'name':
_('Git'), _('Git'),
'platforms': [ 'platforms': [{
{ 'type': 'download',
'type': 'download', 'os': 'gnu-linux',
'os': 'gnu-linux', 'url': 'https://git-scm.com/download/linux'
'url': 'https://git-scm.com/download/linux' }, {
}, 'type': 'download',
{ 'os': 'macos',
'type': 'download', 'url': 'https://git-scm.com/download/mac'
'os': 'macos', }, {
'url': 'https://git-scm.com/download/mac' 'type': 'download',
}, 'os': 'windows',
{ 'url': 'https://git-scm.com/download/mac'
'type': 'download', }]
'os': 'windows',
'url': 'https://git-scm.com/download/mac'
},
]
}, },
]) ])