Skip to content

Commit 655a89f

Browse files
committed
Reformatted with black
Signed-off-by: Ole Herman Schumacher Elgesem <[email protected]>
1 parent 17e1bb0 commit 655a89f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/cfengine_cli/deptool.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -266,11 +266,7 @@ def deps_list(self, ref="master"):
266266
# list(only_deps) = ["lcov", "pthreads-w32 libgnurx"]
267267
# to "flattern" it we first join using spaces and then split on spaces
268268
# in the middle we also do some clean-ups
269-
only_deps = (
270-
" ".join(only_deps)
271-
.replace("libgcc ", "")
272-
.split(" ")
273-
)
269+
only_deps = " ".join(only_deps).replace("libgcc ", "").split(" ")
274270
# now only_deps looks like this: ["lcov", "pthreads-w32", "libgnurx"]
275271
log.debug(pretty(only_deps))
276272
only_deps = sorted(only_deps)

0 commit comments

Comments
 (0)