Skip to content

Commit e81a368

Browse files
committed
fix: 타입 오류 수정
1 parent c9d93ae commit e81a368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/participant_portal_api/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def join_modification_data(self, data: dict) -> dict:
6868
if isinstance(orig_value, list):
6969
sub_mod_value_map: dict[str, typing.Any] = {v["id"]: v for v in mod_data}
7070
new_value = []
71-
for orig_sub_value in orig_value[field]:
71+
for orig_sub_value in orig_value:
7272
if not isinstance(orig_sub_value, dict) or not (sub_value_id := orig_sub_value.get("id")):
7373
continue
7474

0 commit comments

Comments
 (0)