We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69dc4a2 commit 062ee8aCopy full SHA for 062ee8a
scripts/build_datapackage.py
@@ -558,7 +558,8 @@ def request_sha(
558
with niquests.get(data_url, headers=headers) as resp:
559
trees = resp.json()
560
return {t["path"]: _to_hash(t["sha"]) for t in trees["tree"]}
561
- raise NotImplementedError
+ msg = f"Did not find a tree for {DATA!r} in response:\n{root!r}"
562
+ raise NotImplementedError(msg)
563
564
565
def _to_hash(s: str, /) -> str:
0 commit comments