diff --git a/templates/scraper.py b/templates/scraper.py index 7b771b3f3..6dd0e16a9 100644 --- a/templates/scraper.py +++ b/templates/scraper.py @@ -1,6 +1,6 @@ # mypy: allow-untyped-defs -from ._abstract import AbstractScraper # type: ignore [import] +from ._abstract import AbstractScraper class Template(AbstractScraper): diff --git a/templates/test_scraper.py b/templates/test_scraper.py index 3426e37bb..281fba9be 100644 --- a/templates/test_scraper.py +++ b/templates/test_scraper.py @@ -1,6 +1,6 @@ # mypy: allow-untyped-defs -from recipe_scrapers.template import Template # type: ignore [import] +from recipe_scrapers.template import Template from tests import ScraperTest