Skip to content

Commit

Permalink
fix type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaiyu Yang committed Mar 24, 2024
1 parent 0dbb82e commit abefa8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prover/proof_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def __init__(

def search_unordered(
self, repo: LeanGitRepo, theorems: List[Theorem], positions: List[Pos]
) -> List[SearchResult]:
) -> List[Optional[SearchResult]]:
"""Parallel proof search for `theorems`. The order of the results is not guaranteed to match the order of the input."""
if not self.distributed:
return [
Expand Down

0 comments on commit abefa8d

Please sign in to comment.