Skip to content

Commit

Permalink
Client - Correct the typo (#307)
Browse files Browse the repository at this point in the history
  • Loading branch information
SecorD0 authored Oct 26, 2023
1 parent c555440 commit fe0433c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steampy/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down

0 comments on commit fe0433c

Please sign in to comment.