(self, session: requests.Session, state: dict)
| 1009 | TITLES_URL = "https://www.ecfr.gov/api/versioner/v1/titles.json" |
| 1010 | |
| 1011 | def __init__(self, session: requests.Session, state: dict): |
| 1012 | self.session = session |
| 1013 | self.state = state |
| 1014 | |
| 1015 | def check(self, source_id: str, source: dict) -> Optional[dict]: |
| 1016 | prev = self.state.get(source_id, {}) |
nothing calls this directly
no outgoing calls
no test coverage detected