Skip to content

Commit d647b47

Browse files
Auto-format: cargo fmt --all
1 parent 56bb7b8 commit d647b47

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

crates/vm/src/builtins/code.rs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -958,12 +958,11 @@ impl PyCode {
958958
let next_op = instructions
959959
.get(i + 1)
960960
.map(|u| u.op.to_base().unwrap_or(u.op));
961-
let fallthrough =
962-
if matches!(next_op, Some(Instruction::NotTaken)) {
963-
(i + 2) * 2
964-
} else {
965-
(i + 1) * 2
966-
};
961+
let fallthrough = if matches!(next_op, Some(Instruction::NotTaken)) {
962+
(i + 2) * 2
963+
} else {
964+
(i + 1) * 2
965+
};
967966
(i * 2, fallthrough, oparg as usize * 2)
968967
}
969968
Instruction::EndAsyncFor => {

0 commit comments

Comments
 (0)