We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4853445 commit 04cdedfCopy full SHA for 04cdedf
src/commands/sourcemaps/explain.rs
@@ -228,15 +228,13 @@ fn fetch_release_artifact_file_metadata(
228
release,
229
&artifact.id,
230
)?;
231
- #[expect(clippy::manual_inspect)]
232
file_metadata
233
.ok_or_else(|| format_err!("Could not retrieve file metadata: {}", &artifact.id))
234
- .map(|f| {
+ .inspect(|_| {
235
success(format!(
236
"Successfully fetched {} file metadata from the server.",
237
artifact.name
238
- ));
239
- f
+ ))
240
})
241
}
242
0 commit comments