From 76d38faf209477ebcb6257a690c5b6cdbcc6d7cb Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Tue, 30 Oct 2018 23:39:33 +0200 Subject: [PATCH] build_manifest.py: remove request assertion This does indeed brake things --- gitlab/build_manifest.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/gitlab/build_manifest.py b/gitlab/build_manifest.py index 25ffafe58a..d0e7ffcf0e 100755 --- a/gitlab/build_manifest.py +++ b/gitlab/build_manifest.py @@ -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]