From a187a7fc5608253995d117e87be76d4c58779a72 Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Thu, 4 Dec 2025 13:32:14 +0100 Subject: [PATCH] Ruff --- .../ayon_core/plugins/publish/extract_thumbnail_from_source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_core/plugins/publish/extract_thumbnail_from_source.py b/client/ayon_core/plugins/publish/extract_thumbnail_from_source.py index 4295489bea..abfbfc70e6 100644 --- a/client/ayon_core/plugins/publish/extract_thumbnail_from_source.py +++ b/client/ayon_core/plugins/publish/extract_thumbnail_from_source.py @@ -68,7 +68,7 @@ class ProfileConfig: # Get all field names defined in the dataclass field_names = {f.name for f in fields(cls)} - # Filter the input dictionary to include only keys that match field names + # Filter the input dictionary to include only keys matching field names filtered_data = {k: v for k, v in data.items() if k in field_names} # Unpack the filtered dictionary into the constructor