From 79918c26b684212958e1b8e58f27aee0c49cdc01 Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Thu, 24 Mar 2016 15:04:27 +0100 Subject: [PATCH] PEP8 formatting --- pillar/application/utils/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pillar/application/utils/__init__.py b/pillar/application/utils/__init__.py index 76e970b8..b15edcb2 100644 --- a/pillar/application/utils/__init__.py +++ b/pillar/application/utils/__init__.py @@ -2,8 +2,9 @@ import copy def remove_private_keys(document): - """Removes any key that starts with an underscore, returns result as new dictionary.""" - + """Removes any key that starts with an underscore, returns result as new + dictionary. + """ patch_info = copy.deepcopy(document) for key in list(patch_info.keys()): if key.startswith('_'):