(event: Dict[str, Any])
| 1184 | journals = load_default_journals() |
| 1185 | |
| 1186 | def emit(event: Dict[str, Any]) -> None: |
| 1187 | if not callable(progress_callback): |
| 1188 | return |
| 1189 | try: |
| 1190 | progress_callback(event) |
| 1191 | except Exception as exc: |
| 1192 | print(f" Progress callback error: {exc}") |
| 1193 | |
| 1194 | def emit_fetched(source: str, papers: List[Dict]) -> None: |
| 1195 | for paper in papers: |
no outgoing calls
no test coverage detected