chore(deps): update dependency mypy to v1.8.0 (#2943)

* chore(deps): update dependency mypy to v1.8.0

* appease the linting overlords

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2024-01-11 04:44:23 +00:00
committed by GitHub
parent 0d89c86559
commit b8dd0fc97c
2 changed files with 30 additions and 29 deletions

View File

@@ -94,7 +94,7 @@ class RecipeBulkScraperService(BaseService):
tasks = [_do(b.url) for b in urls.imports]
results = await asyncio.gather(*tasks, return_exceptions=True)
for b, recipe in zip(urls.imports, results, strict=True):
if not recipe or isinstance(recipe, Exception):
if not recipe or isinstance(recipe, BaseException):
continue
if b.tags: