Skip to content

Commit b762dfa

Browse files
committed
Changed copy.copy(d) to d.copy()
1 parent 1929d8b commit b762dfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

comfy_api/latest/_io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1419,7 +1419,7 @@ def get_finalized_class_inputs(d: dict[str, Any], live_inputs: dict[str, Any], i
14191419
"optional": {},
14201420
"dynamic_paths": {},
14211421
}
1422-
d = copy.copy(d)
1422+
d = d.copy()
14231423
# ignore hidden for parsing
14241424
hidden = d.pop("hidden", None)
14251425
parse_class_inputs(out_dict, live_inputs, d)

0 commit comments

Comments
 (0)