Skip to content
This repository was archived by the owner on Aug 10, 2023. It is now read-only.

Commit 4900c5e

Browse files
Update V1.py to follow the Auth0 version change. (#1465)
param name changed from email to email_address in OpenAI Auth0 class.
1 parent 4691ef9 commit 4900c5e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/revChatGPT/V1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ def login(self) -> None:
497497
error = t.AuthenticationError("Insufficient login details provided!")
498498
raise error
499499
auth = Authenticator(
500-
email=self.config.get("email"),
500+
email_address=self.config.get("email"),
501501
password=self.config.get("password"),
502502
proxy=self.config.get("proxy"),
503503
)

0 commit comments

Comments
 (0)