Remove unnecessary check for pytest.skip
[vvp/validation-scripts.git] / update_reqs.py
index 304b479..0a53ec9 100644 (file)
@@ -54,7 +54,7 @@ THIS_DIR = os.path.dirname(os.path.abspath(__file__))
 
 def get_requirements():
     """Retrieves the binary JSON content fom REQS_URL"""
-    return request.urlopen(REQS_URL)
+    return request.urlopen(REQS_URL)  # nosec
 
 
 def write_file(contents, path):