Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion copier/_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1273,8 +1273,11 @@ def _apply_update(self) -> None: # noqa: C901
dst_path=new_copy / subproject_subdir,
data={
k: v
for k, v in self._answers_to_remember().items()
for k, v in self.answers.combined.items()
if not k.startswith("_")
and k not in self.answers.hidden
and isinstance(k, JSONSerializable)
and isinstance(v, JSONSerializable)
},
defaults=True,
quiet=True,
Expand Down
Loading