MCPcopy Create free account
hub / github.com/TheSmallHanCat/flow2api / _parse_json_response_text

Method _parse_json_response_text

src/services/flow_client.py:4313–4319  ·  view source on GitHub ↗
(text: str)

Source from the content-addressed store, hash-verified

4311
4312 @staticmethod
4313 def _parse_json_response_text(text: str) -> Optional[Any]:
4314 if not text:
4315 return None
4316 try:
4317 return json.loads(text)
4318 except Exception:
4319 return None
4320
4321 @staticmethod
4322 async def _stdlib_json_http_request(

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected