Use yaml.safe_load. (#4537)
This commit is contained in:
@@ -164,7 +164,7 @@ class ClangTidy(object):
|
|||||||
self.compile_commands = json.load(fd)
|
self.compile_commands = json.load(fd)
|
||||||
tidy_file = os.path.join(self.root_path, '.clang-tidy')
|
tidy_file = os.path.join(self.root_path, '.clang-tidy')
|
||||||
with open(tidy_file) as fd:
|
with open(tidy_file) as fd:
|
||||||
self.clang_tidy = yaml.load(fd)
|
self.clang_tidy = yaml.safe_load(fd)
|
||||||
self.clang_tidy = str(self.clang_tidy)
|
self.clang_tidy = str(self.clang_tidy)
|
||||||
all_files = []
|
all_files = []
|
||||||
for entry in self.compile_commands:
|
for entry in self.compile_commands:
|
||||||
|
|||||||
Reference in New Issue
Block a user