Resolve the method title for a given method. :param method: The method name. :return: The method title for the given method.
(method: str)
| 63 | |
| 64 | |
| 65 | def resolve_method_title(method: str) -> str: |
| 66 | """Resolve the method title for a given method. |
| 67 | |
| 68 | :param method: The method name. |
| 69 | :return: The method title for the given method. |
| 70 | """ |
| 71 | return METHOD_TITLE_MAPPING.get(method, method) |
| 72 | |
| 73 | |
| 74 | def resolve_method_output_dir( |
no test coverage detected