From c76ee743680d762df5a3206c4b002af39774feb2 Mon Sep 17 00:00:00 2001 From: Cosmin Tanislav Date: Tue, 14 Jan 2025 14:55:01 +0200 Subject: [PATCH] utils: do not use ' inside f-string delimited by ' --- utils/cam_kms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/cam_kms.py b/utils/cam_kms.py index 159f887..5514d7b 100644 --- a/utils/cam_kms.py +++ b/utils/cam_kms.py @@ -81,7 +81,7 @@ def __init__(self, ctx) -> None: raise RuntimeError('Unable to adjust formats') if kms_w != stream['kms-buf-w']: - print(f'Adjusted kms width from {kms_w} to {stream['kms-buf-w']}') + print(f'Adjusted kms width from {kms_w} to {stream["kms-buf-w"]}') if ctx.buf_type == 'drm' and stream.get('embedded', False): divs = [16, 8, 4, 2, 1]