LibGfx: Convert single quote string to double quotes

Caught via ruff. Not sure why black didn't catch this one previously.
This commit is contained in:
Timothy Flynn 2025-06-09 09:31:11 -04:00 committed by Tim Flynn
commit 34e178d0e7
Notes: github-actions[bot] 2025-06-09 15:27:00 +00:00

View file

@ -336,7 +336,7 @@ def generate_getter(tag: Tag) -> str:
unpacked_if_needed = Rf"""
{container_initialization}
for (u32 i = 0; i < possible_value->size(); ++i)
tmp[i] = {extracted_value_template.format('i')};
tmp[i] = {extracted_value_template.format("i")};
return tmp;"""