From 6099b89f35499c60eb0ed4be10e40966326ea678 Mon Sep 17 00:00:00 2001 From: Patrik Teivonen Date: Thu, 16 Jun 2022 14:39:04 +0300 Subject: PEP8: Fix indentation Enable flake8 indentation related checks and fix indentation: - E123 Closing bracket does not match indentation of opening bracket's line - E126 Continuation line over-indented for hanging indent - E128 Continuation line under-indented for visual indent - E125 Continuation line with same indent as next logical line - E117 Over-indented - E124 Closing bracket does not match visual indentation - E127 Continuation line over-indented for visual indent - E111 Indentation is not a multiple of four - E121 Continuation line under-indented for hanging indent Change-Id: I2f25ed06d229b8fdaf94d69fa080dc1178ff3a2d Reviewed-by: Akseli Salovaara Reviewed-by: Iikka Eklund --- packaging-tools/build_wrapper.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'packaging-tools/build_wrapper.py') diff --git a/packaging-tools/build_wrapper.py b/packaging-tools/build_wrapper.py index 70b07d010..da694a0c2 100644 --- a/packaging-tools/build_wrapper.py +++ b/packaging-tools/build_wrapper.py @@ -304,13 +304,12 @@ class BuildLog: def check_call_log(args, execution_path, extra_env=dict(os.environ), log_filepath=None, log_overwrite=False): if not log_filepath: - do_execute_sub_process(args, execution_path, - extra_env=extra_env) + do_execute_sub_process(args, execution_path, extra_env=extra_env) else: with BuildLog(log_filepath, log_overwrite) as f: - do_execute_sub_process(args, execution_path, - extra_env=extra_env, - redirect_output=f) + do_execute_sub_process( + args, execution_path, extra_env=extra_env, redirect_output=f + ) def create_qtcreator_source_package(source_path, plugin_name, version, edition, target_path, log_filepath): -- cgit v1.2.3