Skip to content
Snippets Groups Projects

Fix get_bob_tags to return default tags

Merged Yannick DAYER requested to merge wrap-tags into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -149,7 +149,7 @@ def get_bob_tags(estimator=None, force_tags=None):
"bob_features_load_fn": bob.io.base.load,
"bob_fit_supports_dask_array": False,
}
estimator_tags = estimator._get_tags()
estimator_tags = estimator._get_tags() if estimator is not None else {}
return {**default_tags, **estimator_tags, **force_tags}
Loading