Skip to content

Commit

Permalink
Remove clippy lint allows (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron authored Dec 30, 2024
1 parent 009d083 commit 816f150
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion pyo3-arrow/src/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,6 @@ impl PyArray {
to_numpy(py, &self.array)
}

#[allow(unused_variables)]
#[pyo3(signature = (requested_schema=None))]
fn __arrow_c_array__<'py>(
&'py self,
Expand Down
1 change: 0 additions & 1 deletion pyo3-arrow/src/array_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ impl PyArrayReader {
to_schema_pycapsule(py, self.field_ref()?.as_ref())
}

#[allow(unused_variables)]
#[pyo3(signature = (requested_schema=None))]
fn __arrow_c_stream__<'py>(
&'py mut self,
Expand Down
1 change: 0 additions & 1 deletion pyo3-arrow/src/chunked.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,6 @@ impl PyChunkedArray {
to_schema_pycapsule(py, self.field.as_ref())
}

#[allow(unused_variables)]
#[pyo3(signature = (requested_schema=None))]
fn __arrow_c_stream__<'py>(
&'py self,
Expand Down
1 change: 0 additions & 1 deletion pyo3-arrow/src/record_batch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ impl PyRecordBatch {
}
}

#[allow(unused_variables)]
#[pyo3(signature = (requested_schema=None))]
fn __arrow_c_array__<'py>(
&'py self,
Expand Down
1 change: 0 additions & 1 deletion pyo3-arrow/src/record_batch_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ impl PyRecordBatchReader {
to_schema_pycapsule(py, self.schema_ref()?.as_ref())
}

#[allow(unused_variables)]
#[pyo3(signature = (requested_schema=None))]
fn __arrow_c_stream__<'py>(
&'py mut self,
Expand Down
1 change: 0 additions & 1 deletion pyo3-arrow/src/scalar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ impl PyScalar {
Self::try_new(array, field)
}

#[allow(unused_variables)]
#[pyo3(signature = (requested_schema=None))]
fn __arrow_c_array__<'py>(
&'py self,
Expand Down
1 change: 0 additions & 1 deletion pyo3-arrow/src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ impl PyTable {
to_schema_pycapsule(py, self.schema.as_ref())
}

#[allow(unused_variables)]
#[pyo3(signature = (requested_schema=None))]
fn __arrow_c_stream__<'py>(
&'py self,
Expand Down

0 comments on commit 816f150

Please sign in to comment.