Skip to content

Commit 0c3b80c

Browse files
committed
Undo syntax change
1 parent 828dd35 commit 0c3b80c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/sas/sas.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cdef const uint8_t[:] rle_decompress(int result_length, const uint8_t[:] inbuff)
2828
ipos += 1
2929

3030
if control_byte == 0x00:
31-
nbytes = <int>inbuff[ipos] + 64 + end_of_first_byte * 256
31+
nbytes = <int>(inbuff[ipos]) + 64 + end_of_first_byte * 256
3232
ipos += 1
3333
for _ in range(nbytes):
3434
result[rpos] = inbuff[ipos]

0 commit comments

Comments
 (0)