Merge pull request #943 from nashant/reading_gov_uk-fixup

This commit is contained in:
5ila5
2023-05-04 13:34:18 +02:00
committed by GitHub

View File

@@ -46,7 +46,6 @@ class Source:
if self._uprn is None:
self._uprn = self.get_uprn()
resp = requests.get(f"{SEARCH_URLS['COLLECTION']}/{self._uprn}")
breakpoint()
return [self.parse_collection(col) for col in resp.json()["collections"]]
def get_uprn(self) -> str: