Skip to content

Commit 73b52ba

Browse files
author
Francisco Santos
committed
No cat feats processor fix
1 parent 65ffba4 commit 73b52ba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ydata_synthetic/preprocessing/base_processor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ def col_transform_info(self) -> ProcessorInfo:
5858
return self._col_transform_info
5959

6060
def __create_metadata_synth(self):
61-
num_info = None
62-
cat_info = None
61+
num_info = PipelineInfo([], [])
62+
cat_info = PipelineInfo([], [])
6363
# Numerical ls named tuple
6464
if self.num_cols:
6565
num_info = PipelineInfo(self.num_pipeline.feature_names_in_, self.num_pipeline.get_feature_names_out())

0 commit comments

Comments
 (0)