Skip to content

Commit ea5381d

Browse files
committed
Fix format
1 parent 4376993 commit ea5381d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

vm/src/obj/objstr.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1380,9 +1380,7 @@ fn try_update_quantity_from_tuple(
13801380
Ok(tuple_index)
13811381
}
13821382
}
1383-
None => {
1384-
Err(vm.new_type_error("not enough arguments for format string".to_string()))
1385-
}
1383+
None => Err(vm.new_type_error("not enough arguments for format string".to_string())),
13861384
}
13871385
}
13881386
_ => Ok(tuple_index),

0 commit comments

Comments
 (0)