Skip to content

Commit 6e24125

Browse files
committed
formatting
1 parent 15bb193 commit 6e24125

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

dlt/common/libs/ibis.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import annotations
22

33
import contextlib
4-
from typing import TYPE_CHECKING, Any, Iterator, Optional, Union
4+
from typing import TYPE_CHECKING, Any, Optional, Union
55
from typing_extensions import override
66

77
import dlt
@@ -138,9 +138,7 @@ def raw_sql(self, query: Union[str, sg.Expression], **kwargs: Any) -> Any:
138138

139139
assert isinstance(query, str)
140140
with self._dataset.sql_client as client:
141-
result = client.execute_sql(query)
142-
143-
return result
141+
return client.execute_query(query)
144142

145143
# required for marimo DataSources UI to work
146144
@property

0 commit comments

Comments
 (0)