Commit bf18bcb9 authored by peastman's avatar peastman
Browse files

Fixed incorrect types

parent 7432dcca
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ def get_defaults(module_name: str = None) -> Dict[str, Any]:
        "Input argument must be either 'feat', 'trans', or 'splits'.")

  if module_name == "feat":
    sc = Featurizer
    sc: Any = Featurizer
  elif module_name == "trans":
    sc = Transformer
  elif module_name == "splits":