Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
XMLHexagram committed Dec 2, 2024
1 parent ee9369a commit 79bdfa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/src/actions/analysis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ pub async fn get_percentile(
};
// .with_context(|| "Unable to get analysis value")?;

Ok(result.unwrap_or_default() as f32)
Ok(result.unwrap_or_default())
}

pub async fn get_percentile_analysis_result(
Expand Down

0 comments on commit 79bdfa9

Please sign in to comment.