Skip to content

Commit c809bc7

Browse files
committed
chore: linting
Signed-off-by: ebolblga <[email protected]>
1 parent d829dad commit c809bc7

File tree

1 file changed

+1
-3
lines changed
  • sdk/python/feast/infra/offline_stores/contrib/trino_offline_store

1 file changed

+1
-3
lines changed

sdk/python/feast/infra/offline_stores/contrib/trino_offline_store/trino.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,7 @@ def _to_df_internal(self, timeout: Optional[int] = None) -> pd.DataFrame:
207207

208208
def _to_arrow_internal(self, timeout: Optional[int] = None) -> pyarrow.Table:
209209
"""Return payrrow dataset as synchronously including on demand transforms"""
210-
return pyarrow.Table.from_pandas(
211-
self._to_df_internal(timeout=timeout)
212-
)
210+
return pyarrow.Table.from_pandas(self._to_df_internal(timeout=timeout))
213211

214212
def to_sql(self) -> str:
215213
"""Returns the SQL query that will be executed in Trino to build the historical feature table"""

0 commit comments

Comments
 (0)