(param: Dict[str, str])
| 37 | |
| 38 | |
| 39 | def param_to_string_in_definition(param: Dict[str, str]) -> str: |
| 40 | ret = param['type'] + ' ' + param['name'] |
| 41 | return ret |
| 42 | |
| 43 | |
| 44 | def get_param(elem: dict) -> Dict[str, str]: |
nothing calls this directly
no outgoing calls
no test coverage detected