From 582937b866528017f145a3f580950332579d2571 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Sat, 26 Jul 2025 10:51:37 +0900 Subject: [PATCH] dump_data is now ANY, we do the detail dump type in the run later --- src/corelibs/debug_handling/dump_data.py | 2 +- uv.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/corelibs/debug_handling/dump_data.py b/src/corelibs/debug_handling/dump_data.py index 95048b2..7be7892 100644 --- a/src/corelibs/debug_handling/dump_data.py +++ b/src/corelibs/debug_handling/dump_data.py @@ -6,7 +6,7 @@ import json from typing import Any -def dump_data(data: dict[Any, Any] | list[Any] | str | None) -> str: +def dump_data(data: Any) -> str: """ dump formated output from dict/list diff --git a/uv.lock b/uv.lock index f6d925d..8270179 100644 --- a/uv.lock +++ b/uv.lock @@ -44,7 +44,7 @@ wheels = [ [[package]] name = "corelibs" -version = "0.18.0" +version = "0.18.1" source = { editable = "." } dependencies = [ { name = "jmespath" },