Fix lints from recent PR (#248)
parent
0f35aa450e
commit
41f72b2513
|
@ -1,5 +1,7 @@
|
||||||
use crate::{make_term, Schema};
|
use crate::{make_term, Schema};
|
||||||
use pyo3::{exceptions, prelude::*, types::PyAny, types::PyString, types::PyTuple};
|
use pyo3::{
|
||||||
|
exceptions, prelude::*, types::PyAny, types::PyString, types::PyTuple,
|
||||||
|
};
|
||||||
use tantivy as tv;
|
use tantivy as tv;
|
||||||
|
|
||||||
/// Custom Tuple struct to represent a pair of Occur and Query
|
/// Custom Tuple struct to represent a pair of Occur and Query
|
||||||
|
@ -16,7 +18,6 @@ impl <'source> FromPyObject<'source> for OccurQueryPair {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Tantivy's Occur
|
/// Tantivy's Occur
|
||||||
#[pyclass(frozen, module = "tantivy.tantivy")]
|
#[pyclass(frozen, module = "tantivy.tantivy")]
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
|
@ -137,7 +138,7 @@ impl Query {
|
||||||
#[staticmethod]
|
#[staticmethod]
|
||||||
#[pyo3(signature = (subqueries))]
|
#[pyo3(signature = (subqueries))]
|
||||||
pub(crate) fn boolean_query(
|
pub(crate) fn boolean_query(
|
||||||
subqueries: Vec<(Occur, Query)>
|
subqueries: Vec<(Occur, Query)>,
|
||||||
) -> PyResult<Query> {
|
) -> PyResult<Query> {
|
||||||
let dyn_subqueries = subqueries
|
let dyn_subqueries = subqueries
|
||||||
.into_iter()
|
.into_iter()
|
||||||
|
|
Loading…
Reference in New Issue