Use built-in TypedDict from typing module
Python 3.10+ includes TypedDict in the standard library. Removed typing-extensions dependency as it's unnecessary. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
af61e587f9
commit
6805218e1b
2 changed files with 1 additions and 4 deletions
|
|
@ -10,7 +10,6 @@ dependencies = [
|
||||||
"graphiti-core[falkordb]>=0.23.0",
|
"graphiti-core[falkordb]>=0.23.0",
|
||||||
"pydantic-settings>=2.0.0",
|
"pydantic-settings>=2.0.0",
|
||||||
"pyyaml>=6.0",
|
"pyyaml>=6.0",
|
||||||
"typing-extensions>=4.0.0",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
"""Response type definitions for Graphiti MCP Server."""
|
"""Response type definitions for Graphiti MCP Server."""
|
||||||
|
|
||||||
from typing import Any
|
from typing import Any, TypedDict
|
||||||
|
|
||||||
from typing_extensions import TypedDict
|
|
||||||
|
|
||||||
|
|
||||||
class ErrorResponse(TypedDict):
|
class ErrorResponse(TypedDict):
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue