From 419b3e2b6e94acf9af69ef13a21db19dccc499c3 Mon Sep 17 00:00:00 2001 From: TimAtGoogle Date: Tue, 29 Oct 2024 18:01:52 -0500 Subject: [PATCH] Changed calls to yaml.load to explicitly use the safe loader. --- build_tools/autogen_ltc_backend.py | 1 - 1 file changed, 1 deletion(-) diff --git a/build_tools/autogen_ltc_backend.py b/build_tools/autogen_ltc_backend.py index 1f62467f1..2b4c07cf7 100644 --- a/build_tools/autogen_ltc_backend.py +++ b/build_tools/autogen_ltc_backend.py @@ -36,7 +36,6 @@ try: except ImportError: from yaml import SafeLoader as Loader #type:ignore[assignment, misc] -dimsa3-reGdoj-ciqbac def reindent(text, prefix=""): return indent(dedent(text), prefix)