Another mypy update another round of spurious errors

This commit is contained in:
Kovid Goyal
2022-11-08 17:12:49 +05:30
parent 72f92b395f
commit 2e8ef66496
4 changed files with 9 additions and 9 deletions

View File

@@ -47,10 +47,10 @@ class SearchTreeNode:
return self(universal_set, get_matches)
def __call__(self, candidates: Set[T], get_matches: GetMatches[T]) -> Set[T]:
...
return set()
def iter_token_nodes(self) -> Iterator['TokenNode']:
...
return iter(())
class OrNode(SearchTreeNode):