fix: the pipeline got caught on a lint

This isnt in the 1.87 rustfmt but its stilla  good catch
This commit is contained in:
silver 2025-06-17 16:21:15 +01:00
parent dedf8c3644
commit 327ff99b69
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D

View file

@ -109,7 +109,7 @@ pub fn get_config() -> Config {
} }
} }
if let Ok(x) = env::var("COMMITTEE_CATEGORY") { 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::<u64>() { if let Ok(x) = part.trim().parse::<u64>() {
config.committee_category.push(ChannelId::new(x)); config.committee_category.push(ChannelId::new(x));
} }