Skip to content

Commit 3a81fd1

Browse files
committed
style: rustfmt
1 parent 6e99ad3 commit 3a81fd1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

vm/src/builtins.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,11 @@ pub fn make_module(ctx: &PyContext) -> PyObjectRef {
786786
ctx.set_attr(&py_mod, "ValueError", ctx.exceptions.value_error.clone());
787787
ctx.set_attr(&py_mod, "IndexError", ctx.exceptions.index_error.clone());
788788
ctx.set_attr(&py_mod, "ImportError", ctx.exceptions.import_error.clone());
789-
ctx.set_attr(&py_mod, "StopIteration", ctx.exceptions.stop_iteration.clone());
789+
ctx.set_attr(
790+
&py_mod,
791+
"StopIteration",
792+
ctx.exceptions.stop_iteration.clone(),
793+
);
790794

791795
py_mod
792796
}

0 commit comments

Comments
 (0)