(self, api_key: str, state: dict)
| 954 | GUIDANCE_URL = "https://api.fda.gov/other/guidance.json" |
| 955 | |
| 956 | def __init__(self, api_key: str, state: dict): |
| 957 | self.api_key = api_key |
| 958 | self.state = state |
| 959 | |
| 960 | def check(self, source_id: str, source: dict) -> Optional[dict]: |
| 961 | prev = self.state.get(source_id, {}) |
nothing calls this directly
no outgoing calls
no test coverage detected