(dicts)
| 20 | |
| 21 | |
| 22 | def merge_dicts(dicts): |
| 23 | return { |
| 24 | k : v |
| 25 | for d in dicts |
| 26 | for k, v in d.items() |
| 27 | } |
| 28 | |
| 29 | def prepare_vars(env, defined_functions:List[str]=[], detached_mode=False): |
| 30 | """Prepare variables including APIs and objects for LMPs """ |
no outgoing calls
no test coverage detected