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 90e97b9 commit 93702eaCopy full SHA for 93702ea
1 file changed
scripts/pr_contains.py
@@ -16,8 +16,7 @@ def hif_file_is_ok(rawApiCall):
16
schema = requests.get(url).json()
17
validator = fastjsonschema.compile(schema)
18
rawResponse = requests.get(rawApiCall)
19
- # rawRes = rawResponse.text
20
- hiftext = json.load(rawResponse)
+ hiftext = json.loads(rawResponse.text)
21
try:
22
validator(hiftext)
23
print("HIF-Compliant JSON.")
0 commit comments