Skip to content

Commit 54a2187

Browse files
committed
fix: type.
1 parent cff42a1 commit 54a2187

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

turu-core/src/turu/core/async_cursor.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
from turu.core.protocols.async_cursor import AsyncCursorProtocol, Parameters
1313
from typing_extensions import Self, override
1414

15+
__all__ = ["AsyncCursor", "GenericAsyncCursor", "GenericRowType", "GenericNewRowType"]
16+
1517

1618
class AsyncCursor(Generic[GenericRowType, Parameters], AsyncCursorProtocol[Parameters]):
1719
@property

turu-core/src/turu/core/record/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@
1515
from turu.core.record.record_cursor import RecordCursor
1616
from typing_extensions import Unpack, deprecated
1717

18+
__all__ = [
19+
"record_to_csv",
20+
"record_as_csv",
21+
"CsvRecorder",
22+
"CsvRecorderOptions",
23+
"RecordCursor",
24+
"AsyncRecordCursor",
25+
]
26+
1827

1928
@overload
2029
def record_to_csv(

0 commit comments

Comments
 (0)