build_manifest.py: remove request assertion

This does indeed brake things
This commit is contained in:
Jordan Petridis 2018-10-30 23:39:33 +02:00
parent b5b71baddb
commit 76d38faf20
No known key found for this signature in database
GPG key ID: 902CC06D159744F5

View file

@ -107,9 +107,6 @@ def request_wrap(path: str) -> List[Dict[str, str]]:
if not resp[0]:
return None
# Not sure if there will be any edge cases where it returns more than one
# so lets see if anyone complains
assert len(resp) == 1
return resp[0]