(self, call_parameters, loaded_parameters)
| 97 | raise NotImplementedError('_load_parameters') |
| 98 | |
| 99 | def _update_call_parameters(self, call_parameters, loaded_parameters): |
| 100 | for input_key in loaded_parameters.keys(): |
| 101 | # Only add the values to ``call_parameters`` if not already |
| 102 | # present. |
| 103 | if input_key not in call_parameters: |
| 104 | call_parameters[input_key] = loaded_parameters[input_key] |
| 105 | |
| 106 | |
| 107 | class CliInputJSONArgument(CliInputArgument): |
no outgoing calls
no test coverage detected