Skip to content

Commit 0b3da5d

Browse files
committed
addeding the correct types
1 parent 4c06e41 commit 0b3da5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/feast/infra/compute_engines/local/backends/polars_backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
class PolarsBackend(DataFrameBackend):
10-
def columns(self, df):
10+
def columns(self, df: pl.DataFrame) -> list[str]:
1111
return df.columns
1212

1313
def from_arrow(self, table: pa.Table) -> pl.DataFrame:

0 commit comments

Comments
 (0)