8000 rename _typeshed.SupportsLenAndGetItem to GetItemAndLenSequence by Akuli · Pull Request #6563 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

rename _typeshed.SupportsLenAndGetItem to GetItemAndLenSequence #6563

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revert changes to annoy stub
  • Loading branch information
Akuli committed Dec 10, 2021
commit 787b0b8f47823504c6d0cee229e058d2c00d22ef
4 changes: 2 additions & 2 deletions stubs/annoy/annoy/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from _typeshed import GetItemAndLenSequence
from _typeshed import SupportsLenAndGetItem
from typing import overload
from typing_extensions import Literal

_Vector = GetItemAndLenSequence[float]
_Vector = SupportsLenAndGetItem[float]

class AnnoyIndex:
f: int
Expand Down
0