self._preprocessors = [CheckInputDataFrame()] if self.drop_null_columns: add_step(self._preprocessors, DropNullColumn(), cols, allow_reject=True) Member jeromedockes Oct 22, 2024 we may want to insert it after CleanNullStrings? so that if the column becomes full of nulls after conv...