(kind, points, reason)
| 658 | reasons = defaultdict(list) |
| 659 | |
| 660 | def add(kind, points, reason): |
| 661 | scores[kind] += points |
| 662 | if reason not in reasons[kind]: |
| 663 | reasons[kind].append(reason) |
| 664 | |
| 665 | # Port signatures |
| 666 | if ports & CAMERA_PORTS: |
no outgoing calls
no test coverage detected