Skip to content

Commit

Permalink
Fix the Queue type annotations.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian committed Dec 17, 2023
1 parent bc5dc18 commit 73b17e2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rpds-py"
version = "0.15.1"
version = "0.15.2"
edition = "2021"

[lib]
Expand Down
4 changes: 2 additions & 2 deletions rpds.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ class Queue(Iterable[_T]):
def __init__(self, value: Iterable[_T] = (), *more: _T): ...
def __iter__(self) -> Iterator[_T]: ...
def __len__(self) -> int: ...
def enqueue(self, _T) -> Queue[_T]: ...
def dequeue(self, _T) -> Queue[_T]: ...
def enqueue(self, value: _T) -> Queue[_T]: ...
def dequeue(self, value: _T) -> Queue[_T]: ...
@property
def is_empty(self) -> _T: ...
@property
Expand Down

0 comments on commit 73b17e2

Please sign in to comment.