Skip to content

Commit 19a0b0f

Browse files
committed
lint
1 parent 064c141 commit 19a0b0f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/lib.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,12 @@ struct Lighthouse {
225225
#[pymethods]
226226
impl Lighthouse {
227227
#[new]
228-
fn new(py: Python<'_>, bind: String, min_replicas: u64, join_timeout_ms: Option<u64>) -> PyResult<Self> {
228+
fn new(
229+
py: Python<'_>,
230+
bind: String,
231+
min_replicas: u64,
232+
join_timeout_ms: Option<u64>,
233+
) -> PyResult<Self> {
229234
let join_timeout_ms = join_timeout_ms.unwrap_or(100);
230235

231236
py.allow_threads(move || {

0 commit comments

Comments
 (0)