Skip to content

Commit

Permalink
Merge pull request #648 from spotify/erikbern/fix-646
Browse files Browse the repository at this point in the history
Fix 646
  • Loading branch information
erikbern committed May 18, 2023
2 parents c488fa5 + 873d27a commit 71c3951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion annoy/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ from typing import Sized, overload
from typing_extensions import Literal, Protocol

class _Vector(Protocol, Sized):
def __getitem__(self, i: int) -> float: ...
def __getitem__(self, __index: int) -> float: ...

class AnnoyIndex:
f: int
Expand Down

0 comments on commit 71c3951

Please sign in to comment.