File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -767,7 +767,7 @@ impl PySessionContext {
767767 // Extract schema data if available to avoid borrowing
768768 let schema_owned = schema. map ( |s| s. 0 . clone ( ) ) ;
769769
770- let _ = if path. is_instance_of :: < PyList > ( ) {
770+ _ = if path. is_instance_of :: < PyList > ( ) {
771771 let paths = path. extract :: < Vec < String > > ( ) ?;
772772 // Clone self to avoid borrowing
773773 let self_clone = self . clone ( ) ;
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ impl PySubstraitSerializer {
116116 // Create a future that moves owned values
117117 let future = async move { serializer:: serialize_bytes ( & sql_owned, & ctx_owned) . await } ;
118118
119- let proto_bytes: Vec < u8 > = wait_for_future ( py, future) ??. into ( ) ;
119+ let proto_bytes: Vec < u8 > = wait_for_future ( py, future) ??;
120120 Ok ( PyBytes :: new ( py, & proto_bytes) . into ( ) )
121121 }
122122
Original file line number Diff line number Diff line change 8585 }
8686 _ = interval. tick( ) => {
8787 // Time to check Python signals
88+ #[ allow( clippy:: question_mark) ]
8889 if let Err ( py_exc) = Python :: with_gil( |py| py. check_signals( ) ) {
8990 return Err ( py_exc) ;
9091 }
You can’t perform that action at this time.
0 commit comments