Skip to content

Commit

Permalink
Linting: resolve flake8 F401 error
Browse files Browse the repository at this point in the history
  • Loading branch information
jayaddison committed Sep 9, 2024
1 parent b9e39d7 commit 92f8144
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions recipe_scrapers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@
from typing import Any

from ._abstract import AbstractScraper
from ._exceptions import (
NoSchemaFoundInWildMode,
RecipeSchemaNotFound,
WebsiteNotImplementedError,
)
from ._exceptions import NoSchemaFoundInWildMode
from ._exceptions import RecipeSchemaNotFound # NoQA: F401
from ._exceptions import WebsiteNotImplementedError
from ._factory import SchemaScraperFactory
from ._utils import get_host_name
from .aberlehome import AberleHome
Expand Down

0 comments on commit 92f8144

Please sign in to comment.