chore: Fix several style lints (#17488)
It's not comprehensive enough to start linting on `style` group, but hey, it's a start. Release Notes: - N/A
This commit is contained in:
parent
93249fc82b
commit
e6c1c51b37
361 changed files with 3530 additions and 3587 deletions
|
@ -307,7 +307,7 @@ impl SupermavenAgent {
|
|||
break;
|
||||
}
|
||||
}
|
||||
return anyhow::Ok(());
|
||||
anyhow::Ok(())
|
||||
}
|
||||
})
|
||||
.detach();
|
||||
|
@ -355,7 +355,7 @@ impl SupermavenAgent {
|
|||
let Some(line) = line.strip_prefix(MESSAGE_PREFIX) else {
|
||||
continue;
|
||||
};
|
||||
let Some(message) = serde_json::from_str::<SupermavenMessage>(&line)
|
||||
let Some(message) = serde_json::from_str::<SupermavenMessage>(line)
|
||||
.with_context(|| format!("failed to deserialize line from stdout: {:?}", line))
|
||||
.log_err()
|
||||
else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue