From 3bdbb2cf8d7b0145030ec5904e3d6327ab670db6 Mon Sep 17 00:00:00 2001 From: XronoZ-create Date: Tue, 21 Jun 2022 18:19:18 +0300 Subject: [PATCH] Rollback to current version --- steam/webauth.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/steam/webauth.py b/steam/webauth.py index 4b55943..dbaa176 100644 --- a/steam/webauth.py +++ b/steam/webauth.py @@ -65,8 +65,6 @@ from steam.steamid import SteamID from steam.utils.web import make_requests_session, generate_session_id from steam.core.crypto import rsa_publickey, pkcs1v15_encrypt -from steam.webrequests import BrowserRequests - if six.PY2: intBase = long _cli_input = raw_input @@ -75,7 +73,7 @@ else: _cli_input = input -class WebAuth(BrowserRequests): +class WebAuth(object): key = None logged_on = False #: whether authentication has been completed successfully session = None #: :class:`requests.Session` (with auth cookies after auth is completed) @@ -86,7 +84,6 @@ class WebAuth(BrowserRequests): def __init__(self, username, password=''): self.__dict__.update(locals()) - super().__init__() self.session = make_requests_session() self._session_setup() @@ -411,4 +408,4 @@ class TwoFactorCodeRequired(WebAuthException): pass class TooManyLoginFailures(WebAuthException): - pass + pass \ No newline at end of file