From 0c5a36b7f33964af1cb16abdbefc640b9386349a Mon Sep 17 00:00:00 2001 From: Ryan Lewis Date: Thu, 26 Oct 2023 12:36:25 -0500 Subject: [PATCH] Improvement: more precise Location validation --- wei/core/data_classes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wei/core/data_classes.py b/wei/core/data_classes.py index 118c77a0..f170fd50 100644 --- a/wei/core/data_classes.py +++ b/wei/core/data_classes.py @@ -314,7 +314,7 @@ class Location(BaseModel): name: str """Name of the location""" - coordinates: Any + coordinates: Dict[str, Any] """Coordinates of the location""" state: Optional[str] = "Empty" """State of the location"""