-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
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
[Core] New Config Paradigm #23
[Core] New Config Paradigm #23
Conversation
@microsoft-github-policy-service agree |
FIX: Introducing new config paradigm with Python Dataclasses
Earlier, configuration was loaded from yaml files. Now it will be loaded from python dataclasses leading to much cleaner use of configuration.
Changes:
a. Allowed for default_factory in
create_from_cli_args
function inflat_dataclass.py
file. Earlier error was coming for when creating FlatClass for mutable data types such as list.