Skip to content

Commit

Permalink
Merge pull request #22 from yuchen0cc/main
Browse files Browse the repository at this point in the history
update model pyi
  • Loading branch information
yuchen0cc authored Dec 26, 2024
2 parents 21b8830 + c6e23d0 commit cf2a3b7
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ class DataObject:
def __exit__(self, exc_type, exc_val, exc_tb): ...
def tell(self) -> int: ...
def seek(self, offset: int, whence: int) -> int: ...
def read(self, count: int) -> bytes: ...
def read(self, size: int): ...
def readline(self, size: int): ...
def readinto(self, buf) -> int: ...
def mmap(self) -> int: ...
def close(self) -> int: ...
def close(self): ...
def size(self) -> int: ...


Expand Down

0 comments on commit cf2a3b7

Please sign in to comment.