Replies: 1 comment 1 reply
|
You need to avoid reassigning to the name wa try something like import steam.webauth as wa
wa_1= wa.WebAuth(username="id")
wa_1.cli_login(password="pw")
wa_2 = wa.WebAuth(username="id2")
wa_2.cli_login(password="pw2") |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
import steam.webauth as wa
wa = wa.WebAuth(username="id")
wa.cli_login(password="pw")
wa = wa.WebAuth(username="id2")
wa.cli_login(password="pw2")
I got error
attributeerror: 'webauth' object has no attribute 'webauth'
All reactions