(self, task_name)
| 205 | |
| 206 | class DB(TaskHandler): |
| 207 | def match(self, task_name) -> bool: |
| 208 | task_name = task_name.lower() |
| 209 | return task_name.startswith("db") or task_name.startswith("database") |
| 210 | |
| 211 | def get_main_metric(self, overall_result): |
| 212 | return overall_result["custom"]["overall_cat_accuracy"] |
nothing calls this directly
no outgoing calls
no test coverage detected