From 1cb28715c31f828a8c9425e75b8b8b9be36707bf Mon Sep 17 00:00:00 2001 From: David Whittaker Date: Mon, 21 Oct 2024 11:43:33 -0700 Subject: [PATCH] Allow for dictionary in metadata --- src/dispatch/plugin/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispatch/plugin/models.py b/src/dispatch/plugin/models.py index e7a6b3760ff1..1cae6c5f3f0e 100644 --- a/src/dispatch/plugin/models.py +++ b/src/dispatch/plugin/models.py @@ -219,7 +219,7 @@ class PluginInstanceUpdate(PluginBase): class KeyValue(DispatchBase): key: str - value: str | List[str] + value: str | List[str] | dict class PluginMetadata(DispatchBase):