Use yaml.safe_load
in check-swagger-sources.py
(#3719)
This commit is contained in:
parent
0d634b1935
commit
868949908c
1 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ def check_response(filepath, request, code, response):
|
||||||
|
|
||||||
def check_swagger_file(filepath):
|
def check_swagger_file(filepath):
|
||||||
with open(filepath) as f:
|
with open(filepath) as f:
|
||||||
swagger = yaml.load(f)
|
swagger = yaml.safe_load(f)
|
||||||
|
|
||||||
for path, path_api in swagger.get('paths', {}).items():
|
for path, path_api in swagger.get('paths', {}).items():
|
||||||
|
|
||||||
|
@ -162,7 +162,7 @@ def load_file(path):
|
||||||
else:
|
else:
|
||||||
# We have to assume it's YAML because some of the YAML examples
|
# We have to assume it's YAML because some of the YAML examples
|
||||||
# do not have file extensions.
|
# do not have file extensions.
|
||||||
return yaml.load(f)
|
return yaml.safe_load(f)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue