Fix unnecessary mut warning in chromedriver service

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-12-12 17:33:11 -03:00
parent 3476080ac6
commit 9b2c9dba5b

View file

@ -24,7 +24,7 @@ impl ChromeDriverService {
.spawn()
.context("Failed to start chromedriver")?;
let mut service = Self {
let service = Self {
port,
process: Some(process),
binary_path,