File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -172,15 +172,15 @@ class Connection(Generic[_C]):
172172 def query (self , sql , unbuffered : bool = False ) -> int : ...
173173 def next_result (self , unbuffered : bool = False ) -> int : ...
174174 def affected_rows (self ): ...
175- def kill (self , thread_id ): ...
175+ def kill (self , thread_id ) -> None : ...
176176 def ping (self , reconnect : bool = True ) -> None : ...
177177 @deprecated ("Method is deprecated. Use set_character_set() instead." )
178178 def set_charset (self , charset : str ) -> None : ...
179179 def set_character_set (self , charset : str , collation : str | None = None ) -> None : ...
180180 def connect (self , sock : _socket | None = None ) -> None : ...
181181 def write_packet (self , payload ) -> None : ...
182182 def _read_packet (self , packet_type = ...): ...
183- def insert_id (self ): ...
183+ def insert_id (self ) -> int : ...
184184 def thread_id (self ): ...
185185 def character_set_name (self ): ...
186186 def get_host_info (self ) -> str : ...
You can’t perform that action at this time.
0 commit comments