Skip to content

Commit b74ca19

Browse files
authored
Format code
1 parent 3d4a49c commit b74ca19

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/process.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,9 @@ impl PyProcess {
103103
}
104104

105105
fn set_dtb(&mut self, dtb1: umem, dtb2: umem) -> PyResult<()> {
106-
self.0.set_dtb(dtb1.into(), dtb2.into()).map_err(|e| PyException::new_err(format!("failed to set dtb {}", e)))
106+
self.0
107+
.set_dtb(dtb1.into(), dtb2.into())
108+
.map_err(|e| PyException::new_err(format!("failed to set dtb {}", e)))
107109
}
108110

109111
fn module_info_list(&mut self) -> PyResult<Vec<PyModuleInfo>> {

0 commit comments

Comments
 (0)