🏅 Sync 2026-04-06 15:50:29

This commit is contained in:
github-actions[bot]
2026-04-06 15:50:29 +08:00
parent 8da8d669b5
commit 89b54f4dae
16 changed files with 568 additions and 12 deletions
@@ -0,0 +1,20 @@
From dcefaf8fb607889d7acc60a68448bf6b040dfb87 Mon Sep 17 00:00:00 2001
From: Tiago Gaspar <tiagogaspar8@gmail.com>
Date: Thu, 7 Nov 2024 22:02:49 +0000
Subject: [PATCH] Update loaders.py
---
src/collectors/python.d.plugin/python_modules/bases/loaders.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/src/collectors/python.d.plugin/python_modules/bases/loaders.py
+++ b/src/collectors/python.d.plugin/python_modules/bases/loaders.py
@@ -4,7 +4,7 @@
# SPDX-License-Identifier: GPL-3.0-or-later
try:
- from pyyaml3 import SafeLoader as YamlSafeLoader
+ from yaml import SafeLoader as YamlSafeLoader
except ImportError:
from yaml import SafeLoader as YamlSafeLoader