Skip to content

Commit

Permalink
lint clean
Browse files Browse the repository at this point in the history
  • Loading branch information
dsp-ant committed Nov 27, 2024
1 parent 10e4bdf commit e8a26bb
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 8 deletions.
1 change: 0 additions & 1 deletion src/git/src/mcp_server_git/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import click
from functools import partial
from pathlib import Path
import logging
import sys
Expand Down
6 changes: 2 additions & 4 deletions src/git/src/mcp_server_git/server.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import logging
import json
from pathlib import Path
from typing import Sequence
from mcp.server import Server
Expand All @@ -14,8 +13,7 @@
)
from enum import Enum
import git
from pydantic import BaseModel, Field
from typing import List, Optional
from pydantic import BaseModel

class GitStatus(BaseModel):
repo_path: str
Expand All @@ -32,7 +30,7 @@ class GitCommit(BaseModel):

class GitAdd(BaseModel):
repo_path: str
files: List[str]
files: list[str]

class GitReset(BaseModel):
repo_path: str
Expand Down
1 change: 0 additions & 1 deletion src/sentry/src/mcp_server_sentry/server.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import asyncio
from dataclasses import dataclass
from typing import Any
from urllib.parse import urlparse

import click
Expand Down
1 change: 0 additions & 1 deletion src/sqlite/src/mcp_server_sqlite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from . import server
import asyncio
import argparse
import os


def main():
Expand Down
1 change: 0 additions & 1 deletion src/sqlite/src/mcp_server_sqlite/server.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import sqlite3
import logging
from logging.handlers import RotatingFileHandler
from contextlib import closing
from pathlib import Path
from mcp.server.models import InitializationOptions
Expand Down

0 comments on commit e8a26bb

Please sign in to comment.