From caaa376a7d1f73141a93f49668ac4d0923252185 Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Thu, 24 Mar 2016 15:12:06 +0100 Subject: [PATCH] PEP8 formatting --- pillar/manage/node_types/post.py | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/pillar/manage/node_types/post.py b/pillar/manage/node_types/post.py index 916e9242..ebc687f0 100644 --- a/pillar/manage/node_types/post.py +++ b/pillar/manage/node_types/post.py @@ -30,10 +30,10 @@ node_type_post = { 'attachments': { 'type': 'list', 'schema': { - 'type': 'dict', + 'type': 'dict', 'schema': { 'field': {'type': 'string'}, - 'files' : { + 'files': { 'type': 'list', 'schema': { 'type': 'dict', @@ -55,14 +55,6 @@ node_type_post = { 'url': {}, 'attachments': {'visible': False}, }, - 'parent': ['blog',], - 'permissions': { - # 'groups': [{ - # 'group': app.config['ADMIN_USER_GROUP'], - # 'methods': ['GET', 'PUT', 'POST'] - # }], - # 'users': [], - # 'world': ['GET'] - } + 'parent': ['blog', ], + 'permissions': {} } -