documents: async? mcp? schema type validation?

This commit is contained in:
lda
2026-04-29 15:57:36 +07:00 Verified
parent c78ccbc8dd
commit b62d5eb29f
5 changed files with 114 additions and 90 deletions
+2 -2
View File
@@ -75,10 +75,10 @@ class PathExpr:
def lt(self, other: object) -> Expr:
return self._binary("lt", other)
def __eq__(self, other: object) -> Expr: # ty: ignore[invalid-method-override]
def __eq__(self, other: object) -> Expr: # type: ignore[override] # ty: ignore[invalid-method-override]
return self._binary("eq", other)
def __ne__(self, other: object) -> Expr: # ty: ignore[invalid-method-override]
def __ne__(self, other: object) -> Expr: # type: ignore[override] # ty: ignore[invalid-method-override]
return self._binary("ne", other)
def __gt__(self, other: object) -> Expr: