refactor: Fix circular exception import

This commit is contained in:
Marty Oehme 2024-06-14 15:18:02 +02:00
parent 6b35b2f918
commit 9e713193a8
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
4 changed files with 10 additions and 12 deletions

View file

@ -16,13 +16,3 @@ if find_spec("bs4") and find_spec("magic"):
all_extractors["pocketbook"] = PocketBookExtractor()
else:
logger.debug("pocketbook extractor not activated.")
class ExtractionError(Exception):
"""Raised for exceptions during extraction.
Something went wrong during the extraction process in the extractor
run routine itself.
"""
pass