Browse Source

replace `else: if:` with a literal `elif`

pull/341/head
Hexiro 4 years ago
committed by Rossen
parent
commit
083d1a9a23
  1. 5
      steam/client/__init__.py
  2. 19
      steam/webauth.py

5
steam/client/__init__.py

@ -297,9 +297,8 @@ class SteamClient(CMClient, BuiltinBase):
""" """
if not self.connected: if not self.connected:
self._LOG.debug("Trying to send message when not connected. (discarded)") self._LOG.debug("Trying to send message when not connected. (discarded)")
else: elif body_params and isinstance(message, MsgProto):
if body_params and isinstance(message, MsgProto): proto_fill_from_dict(message.body, body_params)
proto_fill_from_dict(message.body, body_params)
CMClient.send(self, message) CMClient.send(self, message)

19
steam/webauth.py

@ -179,11 +179,10 @@ class WebAuth(object):
if password: if password:
self.password = password self.password = password
elif self.password:
password = self.password
else: else:
if self.password: raise LoginIncorrect("password is not specified")
password = self.password
else:
raise LoginIncorrect("password is not specified")
if not captcha and self.captcha_code: if not captcha and self.captcha_code:
captcha = self.captcha_code captcha = self.captcha_code
@ -339,17 +338,15 @@ class MobileWebAuth(WebAuth):
""" """
if oauth_token: if oauth_token:
self.oauth_token = oauth_token self.oauth_token = oauth_token
elif self.oauth_token:
oauth_token = self.oauth_token
else: else:
if self.oauth_token: raise LoginIncorrect('token is not specified')
oauth_token = self.oauth_token
else:
raise LoginIncorrect('token is not specified')
if steam_id: if steam_id:
self.steam_id = SteamID(steam_id) self.steam_id = SteamID(steam_id)
else: elif not self.steam_id:
if not self.steam_id: raise LoginIncorrect('steam_id is not specified')
raise LoginIncorrect('steam_id is not specified')
steam_id = self.steam_id.as_64 steam_id = self.steam_id.as_64

Loading…
Cancel
Save