mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-26 15:40:18 +00:00
style: fix rustfmt formatting in executor.rs
[skip-regression-check] Co-Authored-By: Claude Opus 4.6 <[email protected]>
This commit is contained in:
@@ -9,8 +9,8 @@ use std::time::{Duration, Instant};
|
||||
|
||||
use crate::context::JobContext;
|
||||
use crate::safety::SafetyLayer;
|
||||
use crate::tools::tool::ToolDomain;
|
||||
use crate::tools::registry::ToolRegistry;
|
||||
use crate::tools::tool::ToolDomain;
|
||||
|
||||
/// Maximum allowed nesting depth for tool-invokes-tool chains.
|
||||
pub const MAX_NESTING_DEPTH: u32 = 5;
|
||||
@@ -433,7 +433,10 @@ mod tests {
|
||||
_params: serde_json::Value,
|
||||
_ctx: &JobContext,
|
||||
) -> Result<ToolOutput, ToolError> {
|
||||
Ok(ToolOutput::text("should not reach here", Duration::from_millis(1)))
|
||||
Ok(ToolOutput::text(
|
||||
"should not reach here",
|
||||
Duration::from_millis(1),
|
||||
))
|
||||
}
|
||||
fn domain(&self) -> ToolDomain {
|
||||
ToolDomain::Container
|
||||
|
||||
Reference in New Issue
Block a user