Skip to content

Commit 0a8f5dc

Browse files
author
Lukas Markeffsky
committed
remove redundant import
``` warning: the item `reqwest` is imported redundantly --> src/github.rs:3:15 | 3 | use reqwest::{self, blocking::Client, blocking::Response}; | ^^^^ the item `reqwest` is already defined here | = note: `#[warn(unused_imports)]` on by default ```
1 parent c6d3f65 commit 0a8f5dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/github.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use anyhow::{bail, Context};
22
use reqwest::header::{HeaderMap, HeaderValue, InvalidHeaderValue, AUTHORIZATION, USER_AGENT};
3-
use reqwest::{self, blocking::Client, blocking::Response};
3+
use reqwest::{blocking::Client, blocking::Response};
44
use serde::{Deserialize, Serialize};
55

66
use crate::{parse_to_naive_date, Commit, GitDate};

0 commit comments

Comments
 (0)