Skip to content

Commit

Permalink
update model pyi
Browse files Browse the repository at this point in the history
Signed-off-by: yuchen.cc <[email protected]>
  • Loading branch information
yuchen0cc committed Dec 26, 2024
1 parent 21b8830 commit c6e23d0
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 c6e23d0

Please sign in to comment.