Skip to content

Commit a574850

Browse files
authored
Merge pull request #63 from yassun7010/add_py_typed
Add py typed
2 parents 0f2670a + 54a2187 commit a574850

File tree

8 files changed

+11
-0
lines changed

8 files changed

+11
-0
lines changed

turu-bigquery/src/turu/bigquery/py.typed

Whitespace-only changes.

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/py.typed

Whitespace-only changes.

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(

turu-mysql/src/turu/mysql/py.typed

Whitespace-only changes.

turu-postgres/src/turu/postgres/py.typed

Whitespace-only changes.

turu-snowflake/src/turu/snowflake/py.typed

Whitespace-only changes.

turu-sqlite3/src/turu/sqlite3/py.typed

Whitespace-only changes.

0 commit comments

Comments
 (0)