Remove unnecessary check for pytest.skip
[vvp/validation-scripts.git] / update_reqs.py
index 0f7ac3e..0a53ec9 100644 (file)
@@ -1,4 +1,3 @@
-# -*- coding: utf8 -*-
 # ============LICENSE_START====================================================
 # org.onap.vvp/validation-scripts
 # ===================================================================
@@ -55,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):