From a3488e056b6f4bf34f44d5e9406394b96c1cda93 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 17 Nov 2024 23:16:27 +0100 Subject: [PATCH] fix annotated httpurl --- wigglecam/connector/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wigglecam/connector/models.py b/wigglecam/connector/models.py index 57f0843..0c5fa04 100644 --- a/wigglecam/connector/models.py +++ b/wigglecam/connector/models.py @@ -11,7 +11,7 @@ class ConfigCameraNode(BaseModel): description="Not used in the app, you can use it to identify the node.", ) base_url: HttpUrl = Field( - default="http://127.0.0.1:8010", + default=HttpUrl("http://127.0.0.1:8010"), description="Base URL (including port) the node can be accessed by. Based on your setup, usually IP is preferred over hostname.", )