Skip to content

Commit f8e70ea

Browse files
committed
make function private
Signed-off-by: niklasvm <niklasvm@gmail.com>
1 parent 807e7ca commit f8e70ea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sdk/python/feast/infra/materialization/contrib/spark/spark_materialization_engine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def _materialize_one(
178178
# split data into batches
179179
spark_df = offline_job.to_spark_df()
180180
batch_size = self.repo_config.batch_engine.batch_size
181-
batched_spark_df, batch_column_alias = add_batch_column(
181+
batched_spark_df, batch_column_alias = _add_batch_column(
182182
spark_df,
183183
join_key_columns=join_key_columns,
184184
timestamp_field=timestamp_field,
@@ -209,7 +209,7 @@ def _materialize_one(
209209
)
210210

211211

212-
def add_batch_column(
212+
def _add_batch_column(
213213
spark_df: DataFrame, join_key_columns, timestamp_field, batch_size
214214
):
215215
"""

0 commit comments

Comments
 (0)