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