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 {
767
767
// Extract schema data if available to avoid borrowing
768
768
let schema_owned = schema. map ( |s| s. 0 . clone ( ) ) ;
769
769
770
- let _ = if path. is_instance_of :: < PyList > ( ) {
770
+ _ = if path. is_instance_of :: < PyList > ( ) {
771
771
let paths = path. extract :: < Vec < String > > ( ) ?;
772
772
// Clone self to avoid borrowing
773
773
let self_clone = self . clone ( ) ;
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ impl PySubstraitSerializer {
116
116
// Create a future that moves owned values
117
117
let future = async move { serializer:: serialize_bytes ( & sql_owned, & ctx_owned) . await } ;
118
118
119
- let proto_bytes: Vec < u8 > = wait_for_future ( py, future) ??. into ( ) ;
119
+ let proto_bytes: Vec < u8 > = wait_for_future ( py, future) ??;
120
120
Ok ( PyBytes :: new ( py, & proto_bytes) . into ( ) )
121
121
}
122
122
Original file line number Diff line number Diff line change 85
85
}
86
86
_ = interval. tick( ) => {
87
87
// Time to check Python signals
88
+ #[ allow( clippy:: question_mark) ]
88
89
if let Err ( py_exc) = Python :: with_gil( |py| py. check_signals( ) ) {
89
90
return Err ( py_exc) ;
90
91
}
You can’t perform that action at this time.
0 commit comments