(target_dict, other_dict)
| 261 | raise AttributeError(f'{var}') from None |
| 262 | |
| 263 | def _extend_dict(target_dict, other_dict): |
| 264 | target_keys = target_dict.keys() |
| 265 | for key, value in other_dict.items(): |
| 266 | if key in target_keys: |
| 267 | continue |
| 268 | target_dict[key] = value |
| 269 | |
| 270 | |
| 271 | def _expand_vars(scheme, vars): |
no test coverage detected