From a2645cf69d9e6ab215af395b5e7003ea23d65191 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Wed, 14 Jan 2026 11:51:25 +0000 Subject: [PATCH] Flow class -> flow blueprint --- trustgraph-flow/trustgraph/config/service/flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trustgraph-flow/trustgraph/config/service/flow.py b/trustgraph-flow/trustgraph/config/service/flow.py index 9a8647a1..ab02fa30 100644 --- a/trustgraph-flow/trustgraph/config/service/flow.py +++ b/trustgraph-flow/trustgraph/config/service/flow.py @@ -49,7 +49,7 @@ class FlowConfig: if param_type not in self.param_type_cache: try: # Fetch parameter type definition from config store - type_def = await self.config.get("parameter-types").get(param_type) + type_def = await self.config.get("parameter-type").get(param_type) if type_def: self.param_type_cache[param_type] = json.loads(type_def) else: