From b3699ace91207ac037bd71cf6f7682c93e31f06d Mon Sep 17 00:00:00 2001 From: William Easton Date: Tue, 14 Apr 2026 10:32:00 -0500 Subject: [PATCH] ruff format fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with Claude Code Co-Authored-By: Claude Opus 4.6 (1M context) --- tests/resources/test_resource_template.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/resources/test_resource_template.py b/tests/resources/test_resource_template.py index 3c9538c0e..bafc3b455 100644 --- a/tests/resources/test_resource_template.py +++ b/tests/resources/test_resource_template.py @@ -838,9 +838,7 @@ class TestMalformedURITemplates: def test_expand_uri_template_with_hyphens(self): """expand_uri_template maps underscored params to hyphenated placeholders.""" - result = expand_uri_template( - "data://{user-id}/profile", {"user_id": "alice"} - ) + result = expand_uri_template("data://{user-id}/profile", {"user_id": "alice"}) assert result == "data://alice/profile" def test_query_param_does_not_clobber_path_param(self):