Run cargo fmt
This commit is contained in:
parent
7c24e361aa
commit
01d78689b5
2 changed files with 4 additions and 2 deletions
|
|
@ -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(),
|
||||
);
|
||||
}
|
||||
_ => (),
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue