fix: remove old proxy logic

When I was caching it with the rest of the data
This commit is contained in:
Karim shoair
2025-12-28 00:02:50 +02:00
parent a8e646160f
commit 09bbd416b8
2 changed files with 4 additions and 13 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ class PlaywrightConfig(Struct, kw_only=True, frozen=False, weakref=True):
if self.page_action and not callable(self.page_action):
raise TypeError(f"page_action must be callable, got {type(self.page_action).__name__}")
if self.proxy:
self.proxy = construct_proxy_dict(self.proxy, as_tuple=True)
self.proxy = construct_proxy_dict(self.proxy)
if self.cdp_url:
cdp_msg = _is_invalid_cdp_url(self.cdp_url)
if cdp_msg: