Skip to content

Commit a6411b4

Browse files
committed
fixed formatting issues
1 parent 817ed3d commit a6411b4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/shell.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,14 @@ pub fn run_shell(vm: &VirtualMachine, scope: Scope) -> PyResult<()> {
122122
full_input.push('\n');
123123

124124

125-
match shell_exec(vm, &full_input, scope.clone(), &mut last_row, empty_line_given, continuing) {
125+
match shell_exec(
126+
vm,
127+
&full_input,
128+
scope.clone(),
129+
&mut last_row,
130+
empty_line_given,
131+
continuing,
132+
) {
126133
ShellExecResult::Ok => {
127134
if continuing {
128135

0 commit comments

Comments
 (0)