Skip to content

Commit cdd937c

Browse files
committed
Refactor: convert indent from tab to space
1 parent 2417d3e commit cdd937c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stdlib/src/array.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1301,12 +1301,12 @@ mod array {
13011301
impl IterNextIterable for PyArrayIter {}
13021302
impl IterNext for PyArrayIter {
13031303
fn next(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<PyIterReturn> {
1304-
zelf.internal.lock().next(|array, pos| {
1305-
Ok(match array.read().get(pos, vm) {
1304+
zelf.internal.lock().next(|array, pos| {
1305+
Ok(match array.read().get(pos, vm) {
13061306
Some(item) => PyIterReturn::Return(item?),
13071307
None => PyIterReturn::StopIteration(None),
13081308
})
1309-
})
1309+
})
13101310
}
13111311
}
13121312

0 commit comments

Comments
 (0)