From 157f80b47b09839528f1129e3230f84b92ca71fe Mon Sep 17 00:00:00 2001 From: Fahad Date: Tue, 10 Jun 2025 13:29:15 +0400 Subject: [PATCH] style: apply black formatting to server.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fixed code formatting in server.py using black - Only formatting changes, no functional modifications - Ensures consistent code style across the project All tests pass (96/96) and linting is clean: - ✅ pytest: 96 tests passed - ✅ ruff: all checks passed - ✅ black: formatting applied - ✅ isort: import sorting correct 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- server.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/server.py b/server.py index 272b8ff..b700165 100644 --- a/server.py +++ b/server.py @@ -227,9 +227,7 @@ async def main(): InitializationOptions( server_name="gemini", server_version=__version__, - capabilities=ServerCapabilities( - tools=ToolsCapability() # Advertise tool support capability - ), + capabilities=ServerCapabilities(tools=ToolsCapability()), # Advertise tool support capability ), )