Skip to content

Commit e4267d9

Browse files
committed
rustfmt
1 parent dbdbdc8 commit e4267d9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

vm/src/stdlib/itertools.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,10 @@ mod decl {
145145
impl PyItertoolsCompress {
146146
#[pymethod(magic)]
147147
fn reduce(zelf: PyRef<Self>) -> (PyTypeRef, (PyIter, PyIter)) {
148-
(zelf.class().clone(), (zelf.data.clone(), zelf.selectors.clone()))
148+
(
149+
zelf.class().clone(),
150+
(zelf.data.clone(), zelf.selectors.clone()),
151+
)
149152
}
150153
}
151154

0 commit comments

Comments
 (0)