Skip to content

Commit

Permalink
Merge pull request #37 from byron-lambda/typing_fix_drop_first
Browse files Browse the repository at this point in the history
Fix `drop_first` method name for typing
  • Loading branch information
Julian authored Nov 19, 2023
2 parents b1ed53f + b5547d4 commit a6e121d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpds.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ class List(Iterable[T]):
def __iter__(self) -> Iterator[T]: ...
def __len__(self) -> int: ...
def push_front(self, value: T) -> "List[T]": ...
def drop_front(self) -> "List[T]": ...
def drop_first(self) -> "List[T]": ...

0 comments on commit a6e121d

Please sign in to comment.