From 19b199d2d718f98f89f29c6d13601dd8f9d8d5c3 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 5 Aug 2025 17:05:47 +0200 Subject: [PATCH] Update tests/test_utils_pv.py --- tests/test_utils_pv.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_utils_pv.py b/tests/test_utils_pv.py index 0b8be11e4..65c1f2b89 100644 --- a/tests/test_utils_pv.py +++ b/tests/test_utils_pv.py @@ -9,7 +9,8 @@ import colorama from slic.utils.pv import PV print("PV backend:", type(PV)) import logging -logging.warning("PV class origin: %s", pv.PV) +logging.warning("PV MRO: %s", PV.__mro__) + '''