| 29 | |
| 30 | |
| 31 | class ClassificationType(Type): |
| 32 | SINGLE_LABEL = "single_label" |
| 33 | MULTI_LABEL = "multi_label" |
| 34 | |
| 35 | @classmethod |
| 36 | def str(cls): |
| 37 | return ",".join([cls.SINGLE_LABEL, cls.MULTI_LABEL]) |
| 38 | |
| 39 | |
| 40 | class ClassificationCollator(Collator): |
nothing calls this directly
no outgoing calls
no test coverage detected