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
This commit is contained in:
gsli97 2025-02-07 18:15:57 -08:00 committed by GitHub
parent 2a250720a6
commit c8eca598a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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]]: