@@ -154,7 +154,7 @@ def set_client_info(self) -> None:
154154
155155 try :
156156 # Try to use client_setinfo command if available
157- self ._redis .client_setinfo ("LIB-NAME" , __full_lib_name__ ) # type: ignore
157+ self ._redis .client_setinfo ("LIB-NAME" , __full_lib_name__ )
158158 except (ResponseError , AttributeError ):
159159 # Fall back to a simple echo if client_setinfo is not available
160160 try :
@@ -174,7 +174,7 @@ async def aset_client_info(self) -> None:
174174
175175 try :
176176 # Try to use client_setinfo command if available
177- await self ._redis .client_setinfo ("LIB-NAME" , client_info ) # type: ignore
177+ await self ._redis .client_setinfo ("LIB-NAME" , client_info )
178178 except (ResponseError , AttributeError ):
179179 # Fall back to a simple echo if client_setinfo is not available
180180 try :
@@ -468,17 +468,17 @@ def put_writes(
468468 # UPSERT case - only update specific fields
469469 if key_exists :
470470 # Update only channel, type, and blob fields
471- pipeline .set (key , "$.channel" , write_obj ["channel" ]) # type: ignore[arg-type]
472- pipeline .set (key , "$.type" , write_obj ["type" ]) # type: ignore[arg-type]
473- pipeline .set (key , "$.blob" , write_obj ["blob" ]) # type: ignore[arg-type]
471+ pipeline .set (key , "$.channel" , write_obj ["channel" ])
472+ pipeline .set (key , "$.type" , write_obj ["type" ])
473+ pipeline .set (key , "$.blob" , write_obj ["blob" ])
474474 else :
475475 # For new records, set the complete object
476- pipeline .set (key , "$" , write_obj ) # type: ignore[arg-type]
476+ pipeline .set (key , "$" , write_obj )
477477 created_keys .append (key )
478478 else :
479479 # INSERT case - only insert if doesn't exist
480480 if not key_exists :
481- pipeline .set (key , "$" , write_obj ) # type: ignore[arg-type]
481+ pipeline .set (key , "$" , write_obj )
482482 created_keys .append (key )
483483
484484 pipeline .execute ()
0 commit comments