Skip to content

Commit

Permalink
utils: do not use ' inside f-string delimited by '
Browse files Browse the repository at this point in the history
  • Loading branch information
Demon000 committed Jan 14, 2025
1 parent cea59a0 commit c76ee74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/cam_kms.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit c76ee74

Please sign in to comment.