(resource, children, keep_details=False)
| 69 | |
| 70 | |
| 71 | def author_tallies(resource, children, keep_details=False): |
| 72 | return build_tallies( |
| 73 | resource=resource, |
| 74 | children=children, |
| 75 | attributes_list='authors', |
| 76 | attribute_value='author', |
| 77 | tallier=tally_persons, |
| 78 | keep_details=keep_details |
| 79 | ) |
| 80 | |
| 81 | |
| 82 | def build_tallies( |
nothing calls this directly
no test coverage detected