diff --git a/recipe_scrapers/_schemaorg.py b/recipe_scrapers/_schemaorg.py index fde25c9b2..5712a63cf 100644 --- a/recipe_scrapers/_schemaorg.py +++ b/recipe_scrapers/_schemaorg.py @@ -24,7 +24,7 @@ def __init__(self, page_data): for syntax in SYNTAXES: for item in data.get(syntax, []): in_context = SCHEMA_ORG_HOST in item.get("@context", "") - item_type = item.get("@type","") + item_type = item.get("@type", "") if isinstance(item_type, list): for type in item_type: if type.lower() in low_schema: