From 34246957377a05653ec6f5da80a5f1f4ff025318 Mon Sep 17 00:00:00 2001 From: James Kebinger Date: Mon, 24 Feb 2025 11:07:07 -0600 Subject: [PATCH] add dict to ConfigValueType's union --- prefab_cloud_python/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prefab_cloud_python/constants.py b/prefab_cloud_python/constants.py index 34139d1..598da28 100644 --- a/prefab_cloud_python/constants.py +++ b/prefab_cloud_python/constants.py @@ -2,5 +2,5 @@ from datetime import timedelta NoDefaultProvided = object() -ConfigValueType = Optional[Union[int, float, bool, str, list[str], timedelta]] +ConfigValueType = Optional[Union[int, float, bool, str, list[str], timedelta, dict]] ContextDictType = dict[str, dict[str, ConfigValueType]]