Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaro00 committed Apr 8, 2024
1 parent cfad214 commit 2662c36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions custom-service/request-scheduler/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ use axum::{
use shuttle_persist::PersistError;

#[derive(Debug)]
pub(crate) struct CrontabServiceError(PersistError);
pub(crate) struct CrontabServiceError;

impl From<PersistError> for CrontabServiceError {
fn from(err: PersistError) -> Self {
Self(err)
fn from(_err: PersistError) -> Self {
Self
}
}

Expand Down

0 comments on commit 2662c36

Please sign in to comment.