mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-23 09:53:45 +03:00
Raise ValueError if an unknown **kwarg is given
This commit is contained in:
parent
f1bca0fd06
commit
76e5206acc
|
@ -118,7 +118,8 @@ class TelegramBareClient:
|
|||
# Used on connection - the user may modify these and reconnect
|
||||
kwargs['app_version'] = kwargs.get('app_version', self.__version__)
|
||||
for name, value in kwargs.items():
|
||||
if hasattr(self.session, name):
|
||||
if not hasattr(self.session, name):
|
||||
raise ValueError('Unknown named parameter', name)
|
||||
setattr(self.session, name, value)
|
||||
|
||||
# Despite the state of the real connection, keep track of whether
|
||||
|
|
Loading…
Reference in New Issue
Block a user