build: pump up version and deps

This commit is contained in:
Karim shoair
2026-04-15 20:44:38 +02:00
parent f8ec79833f
commit 614d136f8c
7 changed files with 13 additions and 11 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
__author__ = "Karim Shoair (karim.shoair@pm.me)"
__version__ = "0.4.6"
__version__ = "0.4.7"
__copyright__ = "Copyright (c) 2024 Karim Shoair"
from typing import Any, TYPE_CHECKING
+3 -1
View File
@@ -179,7 +179,9 @@ class ScraplingMCPServer:
"""
session_id = session_id or uuid4().hex[:12]
if session_id in self._sessions:
raise ValueError(f"Session '{session_id}' already exists. Use a different ID or close the existing session first.")
raise ValueError(
f"Session '{session_id}' already exists. Use a different ID or close the existing session first."
)
common_kwargs: Dict[str, Any] = dict(
wait=wait,