ruff --fix

This commit is contained in:
Justin Spahr-Summers
2024-10-21 14:54:47 +01:00
parent eb1024c654
commit ffff3d9450
2 changed files with 7 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ for reference.
not separate types in the schema. not separate types in the schema.
""" """
LATEST_PROTOCOL_VERSION = "2024-10-07"; LATEST_PROTOCOL_VERSION = "2024-10-07"
ProgressToken = str | int ProgressToken = str | int
Cursor = str Cursor = str

View File

@@ -1,4 +1,9 @@
from mcp_python.types import LATEST_PROTOCOL_VERSION, ClientRequest, JSONRPCMessage, JSONRPCRequest from mcp_python.types import (
LATEST_PROTOCOL_VERSION,
ClientRequest,
JSONRPCMessage,
JSONRPCRequest,
)
def test_jsonrpc_request(): def test_jsonrpc_request():