Skip to content
Prev Previous commit
Next Next commit
fix formatting issues
  • Loading branch information
dannasman committed Oct 18, 2022
commit c3986354cc145e22ed9c3be582021c0a81e125a0
6 changes: 5 additions & 1 deletion vm/src/stdlib/itertools.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ mod decl {
}

#[pymethod(magic)]
fn reduce_ex(zelf: PyRef<Self>, _proto: usize, vm: &VirtualMachine) -> PyResult<PyTupleRef> {
fn reduce_ex(
zelf: PyRef<Self>,
_proto: usize,
vm: &VirtualMachine,
) -> PyResult<PyTupleRef> {
let source = zelf.source.read().clone();
let active = zelf.active.read().clone();
let cls = zelf.class().to_owned();
Expand Down