From 667c6edda901a0f86a239e7c8b384f9783ea9fdd Mon Sep 17 00:00:00 2001 From: Shadab Date: Tue, 17 Feb 2026 21:48:39 -0800 Subject: [PATCH] Fix typo in xml_tools TODO and update CONTRIBUTING.md --- .github/CONTRIBUTING.md | 8 -------- rigging/transform/xml_tools.py | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index d960094..f2db834 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -12,7 +12,6 @@ We actively welcome your pull requests. 3. If you've changed APIs, update the documentation. 4. Ensure the test suite passes. 5. Make sure your code lints. -6. If you haven't already, complete the Contributor License Agreement ("CLA"). ### PR Description Format @@ -54,13 +53,6 @@ Example: - Deprecated setup scripts ``` -## Contributor License Agreement ("CLA") - -In order to accept your pull request, we need you to submit a CLA. You only need -to do this once to work on any of Facebook's open source projects. - -Complete your CLA here: - ## Issues We use GitHub issues to track public bugs. Please ensure your description is diff --git a/rigging/transform/xml_tools.py b/rigging/transform/xml_tools.py index f21d63c..16f799c 100644 --- a/rigging/transform/xml_tools.py +++ b/rigging/transform/xml_tools.py @@ -373,7 +373,7 @@ async def xml_to_tools_transform(chat: "Chat") -> "Chat": # noqa: PLR0912 message.remove_slices(XmlToolCall) # Convert our tool responses - # TODO: handle cased where multiple tool responses are present + # TODO: handle cases where multiple tool responses are present for message in chat.all: if (tool_response := message.try_parse(ToolResponse)) is None: