Skip to content

Commit 6a2b032

Browse files
committed
add decoder_fast to the list
1 parent 8d7b97f commit 6a2b032

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

pyiceberg/avro/decoder_fast.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
from pyiceberg.avro.decoder import BinaryDecoder
1919

20+
__all__: list[str] = []
21+
2022
class CythonBinaryDecoder(BinaryDecoder):
2123
def __init__(self, input_contents: bytes) -> None:
2224
pass

pyiceberg/avro/decoder_fast.pyx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ from libc.stdint cimport uint64_t, int64_t
2323

2424
import array
2525

26+
__all__ = []
27+
2628

2729
cdef extern from "decoder_basic.c":
2830
void decode_zigzag_ints(const unsigned char **buffer, const uint64_t count, uint64_t *result);

0 commit comments

Comments
 (0)