(dest_dict: Dict[str, Any])
| 693 | attrs = [prop.key for prop in self.props] |
| 694 | |
| 695 | def populate(dest_dict: Dict[str, Any]) -> None: |
| 696 | dest_dict.update( |
| 697 | { |
| 698 | key: val |
| 699 | for key, val in zip( |
| 700 | attrs, get_values(dest_dict.pop(self.key)) |
| 701 | ) |
| 702 | } |
| 703 | ) |
| 704 | |
| 705 | return populate |
| 706 |