From 839c4440b51ef5d72125bcb47b47f836193a66ae Mon Sep 17 00:00:00 2001 From: Matthias Stecher Date: Sun, 26 Jul 2020 19:35:31 +0200 Subject: [PATCH] Fix pycodestyle error E128 If fixing E128, the E501 would occur. A bigger change was required. --- cdist/core/code.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cdist/core/code.py b/cdist/core/code.py index 85e689d0..05280aa5 100644 --- a/cdist/core/code.py +++ b/cdist/core/code.py @@ -213,7 +213,8 @@ class Code: # The libraries should be over there, too '__library': self.remote.global_library_path, - '__type_library': os.path.join(self.remote.type_path, - cdist_object.cdist_type.library_path), + '__type_library': os.path.join( + self.remote.type_path, + cdist_object.cdist_type.library_path), } return self._run_code(cdist_object, 'remote', env=env)