Skip to content

Commit

Permalink
Fix black issues (make linters tests green)
Browse files Browse the repository at this point in the history
  • Loading branch information
hhursev committed Oct 10, 2021
1 parent f290501 commit c228448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipe_scrapers/_schemaorg.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c228448

Please sign in to comment.