Skip to content

Commit 9f378a2

Browse files
FynnBeCopilot
andauthored
Update bioimageio/spec/_internal/common_nodes.py
Co-authored-by: Copilot <[email protected]>
1 parent eeb138f commit 9f378a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bioimageio/spec/_internal/common_nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def extract_flat_keys(d: Dict[Any, Any], key: str = "") -> Iterable[str]:
260260
if is_dict(v):
261261
yield from extract_flat_keys(v, key=f"{key}.{k}" if key else k)
262262

263-
yield k
263+
yield f"{key}.{k}" if key else k
264264

265265
given_keys = set(extract_flat_keys(given))
266266
full_keys = set(extract_flat_keys(full))

0 commit comments

Comments
 (0)