From c8eca598a94593dde78b3f87eb52b799b20a603f Mon Sep 17 00:00:00 2001 From: gsli97 Date: Fri, 7 Feb 2025 18:15:57 -0800 Subject: [PATCH] unexpected keyword argument when using proxy-bypass with geoip=True passing a proxy to camoufox with the "bypass"-argument while using geoip=True runs into an exception. extending the class attributes fixes the problem on my local machine --- pythonlib/camoufox/ip.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pythonlib/camoufox/ip.py b/pythonlib/camoufox/ip.py index 1b60672..67782e1 100644 --- a/pythonlib/camoufox/ip.py +++ b/pythonlib/camoufox/ip.py @@ -24,6 +24,7 @@ class Proxy: server: str username: Optional[str] = None password: Optional[str] = None + bypass: Optional[str] = None @staticmethod def parse_server(server: str) -> Tuple[str, str, Optional[str]]: