Skip to content

Commit

Permalink
Add types
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashaag committed Jul 2, 2022
1 parent 5b9cd4b commit 17c965f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pandas/io/sas/_sas.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,9 @@ from pandas.io.sas.sas7bdat import SAS7BDATReader
class Parser:
def __init__(self, parser: SAS7BDATReader) -> None: ...
def read(self, nrows: int) -> None: ...

def read_float_with_byteswap(data: bytes, byteswap: bool) -> float: ...
def read_double_with_byteswap(data: bytes, byteswap: bool) -> float: ...
def read_uint16_with_byteswap(data: bytes, byteswap: bool) -> int: ...
def read_uint32_with_byteswap(data: bytes, byteswap: bool) -> int: ...
def read_uint64_with_byteswap(data: bytes, byteswap: bool) -> int: ...

0 comments on commit 17c965f

Please sign in to comment.