Skip to content

Commit

Permalink
Merge pull request #114 from perib/dev
Browse files Browse the repository at this point in the history
fixed config dict typo
  • Loading branch information
perib authored Dec 14, 2023
2 parents 1fc2a76 + a662f39 commit 0ad8562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tpot2/tpot_estimator/estimator_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def get_configuration_dictionary(options, n_samples, n_features, classification,


else:
config_dict.update(recursive_with_defaults(options, n_samples, n_features, classification, random_state, cv, subsets=subsets, feature_names=feature_names, n_classes=n_classes))
config_dict.update(recursive_with_defaults(option, n_samples, n_features, classification, random_state, cv, subsets=subsets, feature_names=feature_names, n_classes=n_classes))

if len(config_dict) == 0:
raise ValueError("No valid configuration options were provided. Please check the options you provided and try again.")
Expand Down

0 comments on commit 0ad8562

Please sign in to comment.