()
| 74 | |
| 75 | |
| 76 | def get_authors_from_cff_file(): |
| 77 | file_contents = parse_cff_file() |
| 78 | try: |
| 79 | return file_contents["authors"] |
| 80 | except KeyError as key_error: |
| 81 | raise ValueError(f"Failed to find section:{key_error} in {CITATION_FILE}") |
| 82 | |
| 83 | |
| 84 | class ExistingAuthorNames: |
no test coverage detected