Skip to content

Commit e560f95

Browse files
committed
fix: remove comment
1 parent 6b3f04f commit e560f95

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/a2a/utils/proto_utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ def metadata(
5858

5959
@classmethod
6060
def _make_dict_serializable(cls, value: Any) -> Any:
61-
"""재귀적으로 값을 JSON 직렬화 가능한 형태로 변환합니다."""
6261
if isinstance(value, dict):
6362
return {k: cls._make_dict_serializable(v) for k, v in value.items()}
6463
if isinstance(value, (list | tuple)):

0 commit comments

Comments
 (0)