MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/exc.py:180–182  ·  view source on GitHub ↗
(self, target: Any)

Source from the content-addressed store, hash-verified

178 """
179
180 def __init__(self, target: Any):
181 super().__init__(f"Not an executable object: {target!r}")
182 self.target = target
183
184 def __reduce__(self) -> Union[str, Tuple[Any, ...]]:
185 return self.__class__, (self.target,)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected