We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hydra 1.1 raises an error when composing a config if a used config is a ListConfig.
if not isinstance(ret.config, DictConfig): raise ValueError( f"Config {config_path} must be a Dictionary, got {type(ret).__name__}" )
(Note that the error is reporting the wrong type, should be type(ret.config)).
type(ret.config)
The following should reproduce the issue:
group/file.yaml:
group/file.yaml
- a
config.yaml
defaults: - group: file
The text was updated successfully, but these errors were encountered:
omry
Successfully merging a pull request may close this issue.
Hydra 1.1 raises an error when composing a config if a used config is a ListConfig.
Current error:
(Note that the error is reporting the wrong type, should be
type(ret.config)
).The following should reproduce the issue:
group/file.yaml
:- a
config.yaml
The text was updated successfully, but these errors were encountered: