diff --git a/antarest/gui.py b/antarest/gui.py index 8ca213d2c6..66e0b87252 100644 --- a/antarest/gui.py +++ b/antarest/gui.py @@ -18,6 +18,7 @@ from multiprocessing import Process from pathlib import Path from threading import Thread +from typing import Tuple import httpx import uvicorn @@ -123,7 +124,7 @@ def notification_popup(message: str) -> None: title="AntaresWebServer", message=message, app_name="AntaresWebServer", - app_icon=RESOURCE_PATH / "webapp" / "favicon.ico", + app_icon=str(RESOURCE_PATH / "webapp" / "favicon.ico"), timeout=600, )