From 327ff99b693c838476e98cbf599c6ed2ee50f2d9 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Tue, 17 Jun 2025 16:21:15 +0100 Subject: [PATCH] fix: the pipeline got caught on a lint This isnt in the 1.87 rustfmt but its stilla good catch --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index abf8a2d..734fa2c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -109,7 +109,7 @@ pub fn get_config() -> Config { } } if let Ok(x) = env::var("COMMITTEE_CATEGORY") { - for part in x.split(",") { + for part in x.split(',') { if let Ok(x) = part.trim().parse::() { config.committee_category.push(ChannelId::new(x)); }