From 16fcd5f502434c3230b775e08aa5db1c8fa20714 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Sat, 6 Sep 2025 11:52:50 +0100 Subject: [PATCH] Discover schema is working --- trustgraph-cli/trustgraph/cli/load_structured_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trustgraph-cli/trustgraph/cli/load_structured_data.py b/trustgraph-cli/trustgraph/cli/load_structured_data.py index 05ced8df..84a5fced 100644 --- a/trustgraph-cli/trustgraph/cli/load_structured_data.py +++ b/trustgraph-cli/trustgraph/cli/load_structured_data.py @@ -167,7 +167,7 @@ def load_structured_data( logger.debug(f"Response type: {type(response)}, content: {response}") if isinstance(response, list) and len(response) == 1: # Just print the schema name for clean output - print(response[0]) + print(f"Best matching schema: {response[0]}") elif isinstance(response, list): # Multiple schemas - show the list print("Multiple schemas found:")