Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
sffc committed Oct 20, 2023
1 parent 6db64f8 commit 524771a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/datetime/src/provider/neo/adapter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ where
.with_display_context(&subtag))
}
};
return Ok(result.into());
Ok(result.into())
})?;
Ok(DataResponse {
payload: Some(new_payload),
Expand Down Expand Up @@ -110,7 +110,7 @@ where
.with_display_context(&subtag))
}
};
return Ok(result.into());
Ok(result.into())
})?;
Ok(DataResponse {
payload: Some(new_payload),
Expand Down Expand Up @@ -139,7 +139,7 @@ where
.with_display_context(&subtag))
}
};
return Ok(YearSymbolsV1::Eras(result.clone()));
Ok(YearSymbolsV1::Eras(result.clone()))
})?;
Ok(DataResponse {
payload: Some(new_payload),
Expand Down Expand Up @@ -177,7 +177,7 @@ where
.with_display_context(&subtag))
}
};
return Ok(result.into());
Ok(result.into())
})?;
Ok(DataResponse {
payload: Some(new_payload),
Expand Down

0 comments on commit 524771a

Please sign in to comment.