Browse Source

lint: fix clippy lint

tags/v0.3.5-rc0
Michael-J-Ward 1 year ago
parent
commit
bf088fc1eb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      apis/python/node/src/lib.rs

+ 1
- 1
apis/python/node/src/lib.rs View File

@@ -251,7 +251,7 @@ pub fn start_runtime() -> eyre::Result<()> {
}

#[pymodule]
fn dora(py: Python, m: Bound<'_, PyModule>) -> PyResult<()> {
fn dora(_py: Python, m: Bound<'_, PyModule>) -> PyResult<()> {
dora_ros2_bridge_python::create_dora_ros2_bridge_module(&m)?;

m.add_function(wrap_pyfunction!(start_runtime, &m)?)?;


Loading…
Cancel
Save