Allow copying the same file to multiple locations

This commit is contained in:
Kovid Goyal
2022-02-28 13:09:19 +05:30
parent b4cc38a1d9
commit 7d653cb7bf
4 changed files with 16 additions and 9 deletions

View File

@@ -32,7 +32,7 @@ def env(val: str, current_val: Dict[str, str]) -> Iterable[Tuple[str, str]]:
def copy(val: str, current_val: Dict[str, str]) -> Iterable[Tuple[str, CopyInstruction]]:
yield from parse_copy_instructions(val)
yield from parse_copy_instructions(val, current_val)
def init_results_dict(ans: Dict[str, Any]) -> Dict[str, Any]: