(self, api_key: str, state: dict)
| 1480 | ENFORCEMENT_URL = "https://api.fda.gov/device/enforcement.json" |
| 1481 | |
| 1482 | def __init__(self, api_key: str, state: dict): |
| 1483 | self.api_key = api_key |
| 1484 | self.state = state |
| 1485 | |
| 1486 | def check(self, source_id: str, source: dict) -> Optional[dict]: |
| 1487 | prev = self.state.get(source_id, {}) |
nothing calls this directly
no outgoing calls
no test coverage detected