(self, task_name)
| 229 | |
| 230 | class LTP(TaskHandler): |
| 231 | def match(self, task_name) -> bool: |
| 232 | task_name = task_name.lower() |
| 233 | return task_name.startswith("ltp") or task_name.startswith("literal") |
| 234 | |
| 235 | def get_main_metric(self, overall_result): |
| 236 | return overall_result["custom"]["main"] |
nothing calls this directly
no outgoing calls
no test coverage detected