Address clippy::or_fun_call issues
This commit is contained in:
parent
0aa02f715f
commit
1ed7460bf3
|
@ -41,7 +41,7 @@ impl PySequenceProtocol for ByteSequence {
|
||||||
self.elements
|
self.elements
|
||||||
.get(idx as usize)
|
.get(idx as usize)
|
||||||
.map(|&byte| byte)
|
.map(|&byte| byte)
|
||||||
.ok_or(IndexError::py_err("list index out of range"))
|
.ok_or_else(|| IndexError::py_err("list index out of range"))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn __setitem__(&mut self, idx: isize, value: u8) -> PyResult<()> {
|
fn __setitem__(&mut self, idx: isize, value: u8) -> PyResult<()> {
|
||||||
|
|
Loading…
Reference in New Issue