From: Daan De Meyer Date: Thu, 9 Jan 2025 15:24:22 +0000 (+0100) Subject: tree-wide: Fix python formatting X-Git-Tag: v258-rc1~1647 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=96403d5121d93dd47dbe9dab5b90ff973e664ac3;p=thirdparty%2Fsystemd.git tree-wide: Fix python formatting The new release of ruff formats a few more things which causes linter failures in CI so let's fix those formatting nits. --- diff --git a/src/ukify/ukify.py b/src/ukify/ukify.py index cfd9e25e888..6b532437acb 100755 --- a/src/ukify/ukify.py +++ b/src/ukify/ukify.py @@ -763,7 +763,7 @@ def call_systemd_measure(uki: UKI, opts: UkifyConfig, profile_start: int = 0) -> cmd = [ measure_tool, 'calculate', - *(f"--{s.name.removeprefix('.')}={s.content}" for s in to_measure.values()), + *(f'--{s.name.removeprefix(".")}={s.content}' for s in to_measure.values()), *(f'--bank={bank}' for bank in banks), # For measurement, the keys are not relevant, so we can lump all the phase paths # into one call to systemd-measure calculate. @@ -786,7 +786,7 @@ def call_systemd_measure(uki: UKI, opts: UkifyConfig, profile_start: int = 0) -> cmd = [ measure_tool, 'sign', - *(f"--{s.name.removeprefix('.')}={s.content}" for s in to_measure.values()), + *(f'--{s.name.removeprefix(".")}={s.content}' for s in to_measure.values()), *(f'--bank={bank}' for bank in banks), ] @@ -1311,7 +1311,7 @@ def make_uki(opts: UkifyConfig) -> None: os.umask(umask := os.umask(0)) os.chmod(opts.output, 0o777 & ~umask) - print(f"Wrote {'signed' if sign_args_present else 'unsigned'} {opts.output}") + print(f'Wrote {"signed" if sign_args_present else "unsigned"} {opts.output}') @contextlib.contextmanager diff --git a/test/integration-test-wrapper.py b/test/integration-test-wrapper.py index 5fa0325b889..d9d92fcba3b 100755 --- a/test/integration-test-wrapper.py +++ b/test/integration-test-wrapper.py @@ -429,7 +429,7 @@ def main() -> None: dropin += textwrap.dedent( f""" [Service] - Environment=TEST_MATCH_SUBTEST={os.environ["TEST_MATCH_SUBTEST"]} + Environment=TEST_MATCH_SUBTEST={os.environ['TEST_MATCH_SUBTEST']} """ ) @@ -437,7 +437,7 @@ def main() -> None: dropin += textwrap.dedent( f""" [Service] - Environment=TEST_MATCH_TESTCASE={os.environ["TEST_MATCH_TESTCASE"]} + Environment=TEST_MATCH_TESTCASE={os.environ['TEST_MATCH_TESTCASE']} """ ) @@ -568,7 +568,7 @@ def main() -> None: ops += [f'journalctl --file {journal_file} --no-hostname -o short-monotonic -u {args.unit} -p info'] - print("Test failed, relevant logs can be viewed with: \n\n" f"{(' && '.join(ops))}\n", file=sys.stderr) + print(f'Test failed, relevant logs can be viewed with: \n\n{(" && ".join(ops))}\n', file=sys.stderr) # 0 also means we failed so translate that to a non-zero exit code to mark the test as failed. exit(result.returncode or 1)