From 4c2632669bbfb06489331016dd7ee84ea7c38d6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 21 Dec 2017 15:26:32 +0100 Subject: [PATCH] PEP8 formatting --- cloud/routes.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/cloud/routes.py b/cloud/routes.py index db1cdd5..6613835 100644 --- a/cloud/routes.py +++ b/cloud/routes.py @@ -40,14 +40,14 @@ def _homepage_context() -> dict: api = system_util.pillar_api() latest_posts = Node.all({ 'projection': { - 'name': 1, - 'project': 1, - 'node_type': 1, - 'picture': 1, - 'properties.url': 1, - 'properties.content': 1, - 'properties.attachments': 1 - }, + 'name': 1, + 'project': 1, + 'node_type': 1, + 'picture': 1, + 'properties.url': 1, + 'properties.content': 1, + 'properties.attachments': 1 + }, 'where': {'node_type': 'post', 'properties.status': 'published'}, 'embedded': {'project': 1},