MCPcopy
hub / github.com/safishamsi/graphify / patch

Method patch

worked/httpx/raw/client.py:101–102  ·  view source on GitHub ↗
(self, url: str, **kwargs)

Source from the content-addressed store, hash-verified

99 return self.request("PUT", url, **kwargs)
100
101 def patch(self, url: str, **kwargs) -> Response:
102 return self.request("PATCH", url, **kwargs)
103
104 def delete(self, url: str, **kwargs) -> Response:
105 return self.request("DELETE", url, **kwargs)

Callers

nothing calls this directly

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected