From fe0433c8cf7020318cfbbc22e79028a7576374ee Mon Sep 17 00:00:00 2001 From: SecorD <25284138+SecorD0@users.noreply.github.com> Date: Thu, 26 Oct 2023 12:36:53 +0300 Subject: [PATCH] Client - Correct the typo (#307) --- steampy/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steampy/client.py b/steampy/client.py index 6ee9a36..4585b4f 100644 --- a/steampy/client.py +++ b/steampy/client.py @@ -66,7 +66,7 @@ def get_steam_id(self) -> int: def login(self, username: str = None, password: str = None, steam_guard: str = None) -> None: if None in [self.username, self._password, self.steam_guard_string] and None in [username, password, steam_guard]: - raise InvalidCredentials('You have to pass username, password and steam_guard' + raise InvalidCredentials('You have to pass username, password and steam_guard ' 'parameters when using "login" method') if None in [self.username, self._password, self.steam_guard_string]: