diff --git a/src/revChatGPT/V1.py b/src/revChatGPT/V1.py index 9b146544c3..9f83390f25 100644 --- a/src/revChatGPT/V1.py +++ b/src/revChatGPT/V1.py @@ -497,7 +497,7 @@ def login(self) -> None: error = t.AuthenticationError("Insufficient login details provided!") raise error auth = Authenticator( - email=self.config.get("email"), + email_address=self.config.get("email"), password=self.config.get("password"), proxy=self.config.get("proxy"), )