fix: Make Clippy happy
This commit is contained in:
parent
60a0d7d7b9
commit
0178f758dc
2 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ impl Endpoint for Runners {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn endpoint(&self) -> std::borrow::Cow<'static, str> {
|
fn endpoint(&self) -> std::borrow::Cow<'static, str> {
|
||||||
format!("runners").into()
|
"runners".into()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
use std::sync::Mutex;
|
use std::sync::Mutex;
|
||||||
|
|
||||||
use gitlab::{api::{Query, AsyncQuery, projects::jobs::RetryJob}, Runner, Gitlab, AsyncGitlab};
|
use gitlab::{api::{AsyncQuery, projects::jobs::RetryJob}, Runner, AsyncGitlab};
|
||||||
use gitlab_api::Job;
|
use gitlab_api::Job;
|
||||||
|
|
||||||
pub mod gitlab_api;
|
pub mod gitlab_api;
|
||||||
|
|
Loading…
Reference in a new issue