Skip to content

Commit

Permalink
Still install the package obviously, and minor spelling and style fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian committed Dec 17, 2023
1 parent 98e1c7c commit 27d6caf
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docs/spelling-wordlist.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
iter
len
toolchain
4 changes: 3 additions & 1 deletion rpds.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ class HashTrieMap(Mapping[_KT_co, _VT_co]):
def values(self) -> ValuesView[_VT_co]: ...
def remove(self, key: _KT_co) -> HashTrieMap[_KT_co, _VT_co]: ...
def insert(
self, key: _KT_co, val: _VT_co
self,
key: _KT_co,
val: _VT_co,
) -> HashTrieMap[_KT_co, _VT_co]: ...
def update(self, *args: Mapping): ...
@classmethod
Expand Down
1 change: 1 addition & 0 deletions tests/requirements.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
file:.#egg=rpds-py
pytest
2 changes: 2 additions & 0 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ pluggy==1.3.0
# via pytest
pytest==7.4.3
# via -r tests/requirements.in
file:.#egg=rpds-py
# via -r tests/requirements.in

0 comments on commit 27d6caf

Please sign in to comment.