mirror of
https://github.com/google/bumble.git
synced 2026-06-12 09:22:26 +00:00
Fix Rust linter errors
This commit is contained in:
@@ -127,7 +127,7 @@ async fn main() -> PyResult<()> {
|
||||
} else {
|
||||
matching
|
||||
.iter()
|
||||
.map(|t| format!("{}", t))
|
||||
.map(|t| format!("{t}"))
|
||||
.join(" / ")
|
||||
.blue()
|
||||
.to_string()
|
||||
@@ -148,7 +148,7 @@ async fn main() -> PyResult<()> {
|
||||
.next()
|
||||
.unwrap_or_else(|| format!("0x{}", hex::encode_upper(&data)));
|
||||
|
||||
println!(" [{}]: {}", code_str, data_str)
|
||||
println!(" [{code_str}]: {data_str}")
|
||||
});
|
||||
|
||||
Ok(())
|
||||
|
||||
Reference in New Issue
Block a user