Skip to content

Commit

Permalink
changes values to items in collate_parcs
Browse files Browse the repository at this point in the history
  • Loading branch information
adsouza committed Nov 14, 2024
1 parent df6667f commit a8ee17e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1076,7 +1076,7 @@ def all_parcs(
)

def collate_parcs(out_dir: Path, **parcs: Mif) -> DirectoryOf[Mif]: # type: ignore[type-arg]
for name, parc in parcs.values():
for name, parc in parcs.items():
parc.copy(out_dir, new_stem=name)
return DirectoryOf[Mif](out_dir) # type: ignore[no-any-return,type-arg,misc]

Expand Down

0 comments on commit a8ee17e

Please sign in to comment.