Return a list of copyright strings, a list of holder strings and a list of author strings given a ``detections`` list of Detection.
(cls, detections)
| 477 | |
| 478 | @classmethod |
| 479 | def split_values(cls, detections): |
| 480 | """ |
| 481 | Return a list of copyright strings, a list of holder strings and a |
| 482 | list of author strings given a ``detections`` list of Detection. |
| 483 | """ |
| 484 | copyrights, holders, authors = cls.split(detections) |
| 485 | copyrights = [det.copyright for det in copyrights] |
| 486 | holders = [det.holder for det in holders] |
| 487 | authors = [det.author for det in authors] |
| 488 | return copyrights, holders, authors |
| 489 | |
| 490 | |
| 491 | @attr.s(slots=True) |