Run cargo fmt

This commit is contained in:
Ian Douglas Scott 2024-09-18 12:55:36 -07:00 committed by Victoria Brekenfeld
parent 7c24e361aa
commit 01d78689b5
2 changed files with 4 additions and 2 deletions

View file

@ -264,7 +264,9 @@ impl Config {
.shell
.write()
.unwrap()
.update_tiling_exceptions(state.common.config.tiling_exceptions.iter());
.update_tiling_exceptions(
state.common.config.tiling_exceptions.iter(),
);
}
_ => (),
}

View file

@ -63,7 +63,7 @@ pub struct TilingExceptions {
impl TilingExceptions {
pub fn new<'a, I>(exceptions_config: I) -> Self
where
I: Iterator<Item=&'a ApplicationException>
I: Iterator<Item = &'a ApplicationException>,
{
let mut app_ids = Vec::new();
let mut titles = Vec::new();