Skip to content

Commit e7bfda5

Browse files
Auto-format: cargo fmt --all
1 parent cb2f994 commit e7bfda5

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

crates/stdlib/src/json.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,11 @@ mod _json {
220220

221221
/// Parse a number from a character iterator.
222222
/// Returns (result, character_count) where character_count is the number of chars consumed.
223-
fn parse_number_from_chars<I>(&self, chars: I, vm: &VirtualMachine) -> Option<(PyResult, usize)>
223+
fn parse_number_from_chars<I>(
224+
&self,
225+
chars: I,
226+
vm: &VirtualMachine,
227+
) -> Option<(PyResult, usize)>
224228
where
225229
I: Iterator<Item = char>,
226230
{

0 commit comments

Comments
 (0)