(self, api_key: str, state: dict)
| 1375 | RECALL_URL = "https://api.fda.gov/device/recall.json" |
| 1376 | |
| 1377 | def __init__(self, api_key: str, state: dict): |
| 1378 | self.api_key = api_key |
| 1379 | self.state = state |
| 1380 | |
| 1381 | def check(self, source_id: str, source: dict) -> Optional[dict]: |
| 1382 | prev = self.state.get(source_id, {}) |
nothing calls this directly
no outgoing calls
no test coverage detected