Skip to content

Commit fcf07ce

Browse files
committed
fix: type.
1 parent b5f6083 commit fcf07ce

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

turu-snowflake/src/turu/snowflake/async_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ async def rollback(self) -> None:
104104
self._raw_connection.rollback()
105105

106106
@override
107-
async def cursor(self) -> AsyncCursor[Never, PandasDataFrame, PyArrowTable]:
107+
async def cursor(self) -> AsyncCursor[Never, Never, Never]:
108108
return AsyncCursor(self._raw_connection.cursor())
109109

110110
@override

turu-snowflake/src/turu/snowflake/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def rollback(self) -> None:
110110
self._raw_connection.rollback()
111111

112112
@override
113-
def cursor(self) -> Cursor[Never, PandasDataFrame, PyArrowTable]:
113+
def cursor(self) -> Cursor[Never, Never, Never]:
114114
return Cursor(self._raw_connection.cursor())
115115

116116
@override

turu-snowflake/src/turu/snowflake/mock_async_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(self, *args, **kwargs):
2828
turu.core.mock.MockAsyncConnection.__init__(self)
2929

3030
@override
31-
async def cursor(self) -> "MockAsyncCursor[Never, PandasDataFrame, PyArrowTable]":
31+
async def cursor(self) -> "MockAsyncCursor[Never, Never, Never]":
3232
return MockAsyncCursor(self._turu_mock_store)
3333

3434
@overload

turu-snowflake/src/turu/snowflake/mock_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(self, *args, **kwargs):
2828
@override
2929
def cursor(
3030
self,
31-
) -> "turu.snowflake.mock_cursor.MockCursor[Never, PandasDataFrame, PyArrowTable]":
31+
) -> "turu.snowflake.mock_cursor.MockCursor[Never, Never, Never]":
3232
return turu.snowflake.mock_cursor.MockCursor(self._turu_mock_store)
3333

3434
@overload

0 commit comments

Comments
 (0)