Skip to content

Commit

Permalink
Merge pull request #10 from Amulet-Team/compact-type-hint
Browse files Browse the repository at this point in the history
Added compact method to the stub file
  • Loading branch information
gentlegiantJGC authored Nov 12, 2023
2 parents 9fc37c7 + fbae88a commit 11aa86c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/leveldb/_leveldb.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class LevelDB:
def iterate(self, start: bytes = None, end: bytes = None) -> Iterator[Tuple[bytes, bytes]]: ...
def keys(self) -> Iterator[bytes]: ...
def items(self) -> Iterator[Tuple[bytes, bytes]]: ...
def compact(self) -> None:...
def __contains__(self, key: bytes): ...
def __getitem__(self, key: bytes) -> bytes: ...
def __setitem__(self, key: bytes, value: bytes): ...
Expand Down

0 comments on commit 11aa86c

Please sign in to comment.