From 083d1a9a23e58854f985ed9ad6305fb85e2025aa Mon Sep 17 00:00:00 2001 From: Hexiro <42787085+Hexiro@users.noreply.github.com> Date: Sat, 19 Jun 2021 14:46:30 -0400 Subject: [PATCH] replace `else: if:` with a literal `elif` --- steam/client/__init__.py | 5 ++--- steam/webauth.py | 19 ++++++++----------- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/steam/client/__init__.py b/steam/client/__init__.py index aa83760..7ed9228 100644 --- a/steam/client/__init__.py +++ b/steam/client/__init__.py @@ -297,9 +297,8 @@ class SteamClient(CMClient, BuiltinBase): """ if not self.connected: self._LOG.debug("Trying to send message when not connected. (discarded)") - else: - if body_params and isinstance(message, MsgProto): - proto_fill_from_dict(message.body, body_params) + elif body_params and isinstance(message, MsgProto): + proto_fill_from_dict(message.body, body_params) CMClient.send(self, message) diff --git a/steam/webauth.py b/steam/webauth.py index 1a989a0..54bfe92 100644 --- a/steam/webauth.py +++ b/steam/webauth.py @@ -179,11 +179,10 @@ class WebAuth(object): if password: self.password = password + elif self.password: + password = self.password else: - if self.password: - password = self.password - else: - raise LoginIncorrect("password is not specified") + raise LoginIncorrect("password is not specified") if not captcha and self.captcha_code: captcha = self.captcha_code @@ -339,17 +338,15 @@ class MobileWebAuth(WebAuth): """ if oauth_token: self.oauth_token = oauth_token + elif self.oauth_token: + oauth_token = self.oauth_token else: - if self.oauth_token: - oauth_token = self.oauth_token - else: - raise LoginIncorrect('token is not specified') + raise LoginIncorrect('token is not specified') if steam_id: self.steam_id = SteamID(steam_id) - else: - if not self.steam_id: - raise LoginIncorrect('steam_id is not specified') + elif not self.steam_id: + raise LoginIncorrect('steam_id is not specified') steam_id = self.steam_id.as_64