Skip to content

Commit 4a63e42

Browse files
committed
HttpUrl
1 parent 7bf0043 commit 4a63e42

File tree

1 file changed

+3
-2
lines changed
  • packages/notifications-library/src/notifications_library

1 file changed

+3
-2
lines changed

packages/notifications-library/src/notifications_library/_models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from dataclasses import dataclass
2+
from pydantic import HttpUrl
23

34
from models_library.products import ProductName
45

@@ -19,5 +20,5 @@ class ProductData:
1920
display_name: str
2021
vendor_display_inline: str
2122
support_email: str
22-
product_logo: str = "https://raw.githubusercontent.com/ITISFoundation/osparc-simcore/refs/heads/master/services/static-webserver/client/source/resource/osparc/osparc-black.svg"
23-
product_homepage: str = "https://osparc.io/"
23+
product_logo: HttpUrl = "https://raw.githubusercontent.com/ITISFoundation/osparc-simcore/refs/heads/master/services/static-webserver/client/source/resource/osparc/osparc-black.svg"
24+
product_homepage: HttpUrl = "https://osparc.io/"

0 commit comments

Comments
 (0)