Check if a paper matches the must-read list.
(paper: Dict, profile: Dict)
| 1228 | |
| 1229 | |
| 1230 | def is_must_read(paper: Dict, profile: Dict) -> bool: |
| 1231 | """ |
| 1232 | Check if a paper matches the must-read list. |
| 1233 | """ |
| 1234 | matches = get_must_read_matches(paper, profile) |
| 1235 | return any(matches.values()) |
| 1236 | |
| 1237 | |
| 1238 | def detect_new_topics( |
no test coverage detected