From 91da0996a4c9c8bc1e12c03c1595e39aafa0e199 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Sun, 20 Oct 2019 10:58:20 -0400 Subject: [PATCH] gitweb: Fix flake8 error Signed-off-by: James Valleroy --- plinth/modules/gitweb/manifest.py | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/plinth/modules/gitweb/manifest.py b/plinth/modules/gitweb/manifest.py index 0743c3c1f..f62b1d4a4 100644 --- a/plinth/modules/gitweb/manifest.py +++ b/plinth/modules/gitweb/manifest.py @@ -34,23 +34,19 @@ clients = validate([ { 'name': _('Git'), - 'platforms': [ - { - 'type': 'download', - 'os': 'gnu-linux', - 'url': 'https://git-scm.com/download/linux' - }, - { - 'type': 'download', - 'os': 'macos', - 'url': 'https://git-scm.com/download/mac' - }, - { - 'type': 'download', - 'os': 'windows', - 'url': 'https://git-scm.com/download/mac' - }, - ] + 'platforms': [{ + 'type': 'download', + 'os': 'gnu-linux', + 'url': 'https://git-scm.com/download/linux' + }, { + 'type': 'download', + 'os': 'macos', + 'url': 'https://git-scm.com/download/mac' + }, { + 'type': 'download', + 'os': 'windows', + 'url': 'https://git-scm.com/download/mac' + }] }, ])