@@ -183,31 +183,33 @@ class Client(Methods, BaseClient):
183183
184184 terms_of_service_displayed = False
185185
186- def __init__ (self ,
187- session_name : str ,
188- api_id : Union [int , str ] = None ,
189- api_hash : str = None ,
190- app_version : str = None ,
191- device_model : str = None ,
192- system_version : str = None ,
193- lang_code : str = None ,
194- ipv6 : bool = False ,
195- proxy : dict = None ,
196- test_mode : bool = False ,
197- phone_number : str = None ,
198- phone_code : Union [str , callable ] = None ,
199- password : str = None ,
200- recovery_code : callable = None ,
201- force_sms : bool = False ,
202- bot_token : str = None ,
203- first_name : str = None ,
204- last_name : str = None ,
205- workers : int = BaseClient .WORKERS ,
206- workdir : str = BaseClient .WORKDIR ,
207- config_file : str = BaseClient .CONFIG_FILE ,
208- plugins : dict = None ,
209- no_updates : bool = None ,
210- takeout : bool = None ):
186+ def __init__ (
187+ self ,
188+ session_name : str ,
189+ api_id : Union [int , str ] = None ,
190+ api_hash : str = None ,
191+ app_version : str = None ,
192+ device_model : str = None ,
193+ system_version : str = None ,
194+ lang_code : str = None ,
195+ ipv6 : bool = False ,
196+ proxy : dict = None ,
197+ test_mode : bool = False ,
198+ phone_number : str = None ,
199+ phone_code : Union [str , callable ] = None ,
200+ password : str = None ,
201+ recovery_code : callable = None ,
202+ force_sms : bool = False ,
203+ bot_token : str = None ,
204+ first_name : str = None ,
205+ last_name : str = None ,
206+ workers : int = BaseClient .WORKERS ,
207+ workdir : str = BaseClient .WORKDIR ,
208+ config_file : str = BaseClient .CONFIG_FILE ,
209+ plugins : dict = None ,
210+ no_updates : bool = None ,
211+ takeout : bool = None
212+ ):
211213 super ().__init__ ()
212214
213215 self .session_name = session_name
0 commit comments