Skip to content

Commit

Permalink
Update pyrh/models/sessionmanager.py
Browse files Browse the repository at this point in the history
  • Loading branch information
adithyabsk authored Mar 4, 2024
1 parent be89c27 commit 1fde3c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyrh/models/sessionmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ def _mfa_oauth2(self, oauth_payload: JSON, attempts: int = 3) -> OAuth:
if self.mfa != "":
mfa_code = pyotp.TOTP(self.mfa).now()
else:
mfa_code = input("Input mfa code:")
mfa_code = input("Input mfa code: ")
oauth_payload["mfa_code"] = mfa_code
oauth, res = self.post(
urls.OAUTH,
Expand Down

0 comments on commit 1fde3c7

Please sign in to comment.