fix: Make Clippy happy

This commit is contained in:
ptrcnull 2022-06-20 06:22:25 +02:00
parent 60a0d7d7b9
commit 0178f758dc
Signed by: ptrcnull
GPG key ID: 411F7B30801DD9CA
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ impl Endpoint for Runners {
}
fn endpoint(&self) -> std::borrow::Cow<'static, str> {
format!("runners").into()
"runners".into()
}
}

View file

@ -5,7 +5,7 @@
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;
pub mod gitlab_api;