mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Fix format
This commit is contained in:
@@ -1380,9 +1380,7 @@ fn try_update_quantity_from_tuple(
|
||||
Ok(tuple_index)
|
||||
}
|
||||
}
|
||||
None => {
|
||||
Err(vm.new_type_error("not enough arguments for format string".to_string()))
|
||||
}
|
||||
None => Err(vm.new_type_error("not enough arguments for format string".to_string())),
|
||||
}
|
||||
}
|
||||
_ => Ok(tuple_index),
|
||||
|
||||
Reference in New Issue
Block a user