fix: apply isort formatting to fix CI linting

Applied isort to properly sort all imports according to PEP8:
- Standard library imports first
- Third-party imports second
- Local imports last
- Alphabetical ordering within each group

All tests still passing after import reordering.
This commit is contained in:
Fahad
2025-06-08 22:32:27 +04:00
parent 1aa19548d1
commit c03af1629f
18 changed files with 64 additions and 67 deletions

View File

@@ -2,9 +2,10 @@
Setup configuration for Gemini MCP Server
"""
from setuptools import setup
from pathlib import Path
from setuptools import setup
# Read README for long description
readme_path = Path(__file__).parent / "README.md"
long_description = ""