(self, *, dont_fail: bool = False, **kwargs: Any)
| 38 | |
| 39 | class BaseItemExporter(ABC): |
| 40 | def __init__(self, *, dont_fail: bool = False, **kwargs: Any): |
| 41 | self._kwargs: dict[str, Any] = kwargs |
| 42 | self._configure(kwargs, dont_fail=dont_fail) |
| 43 | |
| 44 | def _configure(self, options: dict[str, Any], dont_fail: bool = False) -> None: |
| 45 | """Configure the exporter by popping options from the ``options`` dict. |
nothing calls this directly
no test coverage detected