MCPcopy
hub / github.com/encode/starlette / __init__

Method __init__

starlette/routing.py:35–37  ·  view source on GitHub ↗
(self, name: str, path_params: dict[str, Any])

Source from the content-addressed store, hash-verified

33 """
34
35 def __init__(self, name: str, path_params: dict[str, Any]) -> None:
36 params = ", ".join(list(path_params.keys()))
37 super().__init__(f'No route exists for name "{name}" and params "{params}".')
38
39
40class Match(Enum):

Callers

nothing calls this directly

Calls 2

keysMethod · 0.45
__init__Method · 0.45

Tested by

no test coverage detected