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

Commit

Permalink
Update V1.py to follow the Auth0 version change. (#1465)
Browse files Browse the repository at this point in the history
param name changed from email to email_address in OpenAI Auth0 class.
  • Loading branch information
SimonTheCoder authored Jul 19, 2023
1 parent 4691ef9 commit 4900c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/revChatGPT/V1.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
)
Expand Down

0 comments on commit 4900c5e

Please # to comment.