Skip to content

Commit

Permalink
- lint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
laststylebender14 committed Oct 28, 2024
1 parent 5eca147 commit 1887241
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions tailcall-tracker/src/dispatch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,13 @@ async fn email() -> HashSet<String> {
.await
.ok()?;

let output = parse(output)?;

Some(output.lines().into_iter().map(|o| o.to_owned()).collect())
Some(
parse(output)?
.lines()
.into_iter()
.map(|o| o.to_owned())
.collect(),
)
}

let git_email = git().await;
Expand Down Expand Up @@ -209,9 +213,10 @@ fn os_name() -> String {

#[cfg(test)]
mod tests {
use lazy_static::lazy_static;
use std::process::Command;

use lazy_static::lazy_static;

use super::*;

lazy_static! {
Expand Down

0 comments on commit 1887241

Please sign in to comment.