From 822806172ad2d28990f9ba13a794e31345dfe0ab Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Mon, 16 Feb 2026 19:06:23 +0000 Subject: [PATCH] Fixing Uri import error --- trustgraph-base/trustgraph/api/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/trustgraph-base/trustgraph/api/__init__.py b/trustgraph-base/trustgraph/api/__init__.py index 93466cd2..bd9964d1 100644 --- a/trustgraph-base/trustgraph/api/__init__.py +++ b/trustgraph-base/trustgraph/api/__init__.py @@ -73,6 +73,8 @@ from .async_metrics import AsyncMetrics # Types from .types import ( Triple, + Uri, + Literal, ConfigKey, ConfigValue, DocumentMetadata, @@ -133,6 +135,8 @@ __all__ = [ # Types "Triple", + "Uri", + "Literal", "ConfigKey", "ConfigValue", "DocumentMetadata",