cargo fmt

This commit is contained in:
Will Greenberg
2025-07-16 17:33:10 -07:00
committed by Cooper Quintin
parent f273d28728
commit 5b59efa4c8
2 changed files with 8 additions and 6 deletions

View File

@@ -47,10 +47,7 @@ impl AnalysisWriter {
// Runs the analysis harness on the given container, serializing the results
// to the analysis file, returning the whether any warnings were detected
pub async fn analyze(
&mut self,
container: MessagesContainer,
) -> Result<bool, std::io::Error> {
pub async fn analyze(&mut self, container: MessagesContainer) -> Result<bool, std::io::Error> {
let mut warning_detected = false;
for row in self.harness.analyze_qmdl_messages(container) {
if !row.is_empty() {