MCPcopy Create free account
hub / github.com/idank/explainshell / __init__

Method __init__

explainshell/errors.py:72–81  ·  view source on GitHub ↗
(
        self,
        reason: str,
        stats: object = None,
        *,
        reason_class: FailureReason | None = None,
    )

Source from the content-addressed store, hash-verified

70 """File was intentionally skipped (not a failure)."""
71
72 def __init__(
73 self,
74 reason: str,
75 stats: object = None,
76 *,
77 reason_class: FailureReason | None = None,
78 ) -> None:
79 super().__init__(reason, reason_class=reason_class)
80 self.reason = reason
81 self.stats = stats
82
83
84class FatalExtractionError(ExtractionError):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected