8000 formatting · RustPython/RustPython@32e9adf · GitHub
[go: up one dir, main page]

Skip to content

Commit 32e9adf

Browse files
committed
formatting
1 parent 213c93a commit 32e9adf

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

vm/src/frame.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1207,10 +1207,9 @@ impl ExecutingFrame<'_> {
12071207
}
12081208
bytecode::Instruction::ParamSpec => {
12091209
let param_spec_name = self.pop_value();
1210-
let param_spec: PyObjectRef =
1211-
_typing::make_paramspec(param_spec_name.clone())
1212-
.into_ref(&vm.ctx)
1213-
.into();
1210+
let param_spec: PyObjectRef = _typing::make_paramspec(param_spec_name.clone())
1211+
.into_ref(&vm.ctx)
1212+
.into();
12141213
self.push_value(param_spec);
12151214
Ok(None)
12161215
}

0 commit comments

Comments
 (0)
0