Skip to content

Commit

Permalink
Adding a few type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
ArlindKadra committed Oct 1, 2021
1 parent 644670c commit d938c79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions autoPyTorch/data/tabular_feature_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@


def _create_column_transformer(
preprocessors: Dict,
numerical_columns,
categorical_columns,
preprocessors: Dict[str],
numerical_columns: List[str],
categorical_columns: List[str],
) -> ColumnTransformer:

numerical_pipeline = 'drop'
Expand Down

0 comments on commit d938c79

Please sign in to comment.