Skip to content

Commit

Permalink
Merge pull request #1779 from ehuss/redundant-import
Browse files Browse the repository at this point in the history
Remove redundant imports
  • Loading branch information
jackh726 authored Mar 7, 2024
2 parents 4f833ca + b22fd91 commit e9fe690
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/github.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ use regex::Regex;
use reqwest::header::{AUTHORIZATION, USER_AGENT};
use reqwest::{Client, Request, RequestBuilder, Response, StatusCode};
use std::collections::{HashMap, HashSet};
use std::convert::TryInto;
use std::{
fmt,
time::{Duration, SystemTime},
Expand Down
1 change: 0 additions & 1 deletion src/handlers/assign/tests/tests_from_diff.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//! Tests for `find_reviewers_from_diff`
use super::super::*;
use crate::config::AssignConfig;
use crate::github::parse_diff;
use std::fmt::Write;

Expand Down
1 change: 0 additions & 1 deletion src/handlers/notification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ use crate::{
};
use anyhow::Context as _;
use std::collections::HashSet;
use std::convert::TryInto;
use tracing as log;

pub async fn handle(ctx: &Context, event: &Event) -> anyhow::Result<()> {
Expand Down
1 change: 0 additions & 1 deletion src/handlers/rustc_commits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use crate::{
};
use async_trait::async_trait;
use std::collections::VecDeque;
use std::convert::TryInto;
use tracing as log;

const BORS_GH_ID: u64 = 3372342;
Expand Down
1 change: 0 additions & 1 deletion src/zulip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use crate::handlers::docs_update::docs_update;
use crate::handlers::pull_requests_assignment_update::get_review_prefs;
use crate::handlers::Context;
use anyhow::{format_err, Context as _};
use std::convert::TryInto;
use std::env;
use std::fmt::Write as _;
use tracing as log;
Expand Down

0 comments on commit e9fe690

Please sign in to comment.