(param: Dict[str, str])
| 30 | |
| 31 | |
| 32 | def param_to_string_in_declaration(param: Dict[str, str]) -> str: |
| 33 | ret = param['type'] + ' ' + param['name'] |
| 34 | if 'default' in param: |
| 35 | ret += '=' + param['default'] |
| 36 | return ret |
| 37 | |
| 38 | |
| 39 | def param_to_string_in_definition(param: Dict[str, str]) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected