Correct output IP format.

This commit is contained in:
Herbert Wolverson 2024-04-23 13:40:00 -05:00
parent 05e4a2f59f
commit 0328bc10a3

View File

@ -112,7 +112,7 @@ impl UispDevice {
result += &format!("{}, ", &ip);
}
result.truncate(result.len() - 2);
let result = format!("[{result}]");
let result = format!("{result}");
result
}