Source code for grab.spider.interface

from __future__ import annotations

from types import TracebackType
from typing import Tuple, Type

# pylint: disable=deprecated-typing-alias
[docs]FatalErrorQueueItem = Tuple[Type[Exception], Exception, TracebackType]
# pylint: enable=deprecated-typing-alias