MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

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

Source from the content-addressed store, hash-verified

140 """
141
142 def __init__(self, target: Any):
143 super().__init__("Not an executable object: %r" % target)
144 self.target = target
145
146 def __reduce__(self) -> Union[str, Tuple[Any, ...]]:
147 return self.__class__, (self.target,)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected