We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b3f04f commit e560f95Copy full SHA for e560f95
src/a2a/utils/proto_utils.py
@@ -58,7 +58,6 @@ def metadata(
58
59
@classmethod
60
def _make_dict_serializable(cls, value: Any) -> Any:
61
- """재귀적으로 값을 JSON 직렬화 가능한 형태로 변환합니다."""
62
if isinstance(value, dict):
63
return {k: cls._make_dict_serializable(v) for k, v in value.items()}
64
if isinstance(value, (list | tuple)):
0 commit comments