From c20b5902e3f1b3daac7c9a98a2c0ce49f6a756b6 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 24 May 2020 23:02:39 +0100 Subject: [PATCH] SteamAuthenticator: add revocation_code param to remove() method fix #262 --- steam/guard.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/steam/guard.py b/steam/guard.py index 0627567..a15bccc 100644 --- a/steam/guard.py +++ b/steam/guard.py @@ -207,9 +207,12 @@ class SteamAuthenticator(object): self.steam_time_offset = int(resp['server_time']) - time() - def remove(self): + def remove(self, revocation_code=None): """Remove authenticator + :param revocation_code: revocation code for account (e.g. R12345) + :type revocation_code: str + .. note:: After removing authenticator Steam Guard will be set to email codes @@ -225,7 +228,7 @@ class SteamAuthenticator(object): resp = self._send_request('RemoveAuthenticator', { 'steamid': self.backend.steam_id, - 'revocation_code': self.revocation_code, + 'revocation_code': revocation_code if revocation_code else self.revocation_code, 'steamguard_scheme': 1, })