| 23 | from ..config import OUTPUT_DIR, ARCHIVE_DIR_NAME, FAVICON_PROVIDER |
| 24 | |
| 25 | class ArchiveError(Exception): |
| 26 | def __init__(self, message, hints=None): |
| 27 | super().__init__(message) |
| 28 | self.hints = hints |
| 29 | |
| 30 | LinkDict = Dict[str, Any] |
| 31 |
no outgoing calls
no test coverage detected