Skip to content

Commit c89a7dd

Browse files
committed
fix: lint
1 parent b4bd0a7 commit c89a7dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/parsers/src/tool_calling/pythonic_parser.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ pub fn try_tool_call_parse_pythonic(
121121

122122
let tool_response = parse_tool_calls(&matches[0]);
123123

124-
Ok((tool_response?, Some(String::new()))) // TODO: Add support for normal text
124+
Ok((tool_response?, Some(String::new()))) // TODO: Add support for normal text
125125
}
126126

127127
#[cfg(test)]
@@ -139,7 +139,7 @@ mod tests {
139139
let (result, _) = try_tool_call_parse_pythonic(message).unwrap();
140140
assert!(!result.is_empty());
141141
assert_eq!(result.len(), 2);
142-
let (name, args) = extract_name_and_args(result[0].clone()); // TODO: Add support for normal text
142+
let (name, args) = extract_name_and_args(result[0].clone()); // TODO: Add support for normal text
143143
assert_eq!(name, "foo");
144144
assert_eq!(args["a"], "1");
145145
assert_eq!(args["b"], "2");

0 commit comments

Comments
 (0)