We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2285f08 commit 80a31f5Copy full SHA for 80a31f5
changes/config.py
@@ -90,3 +90,9 @@ def project_config(context):
90
91
config = yaml.safe_load(click.open_file(config_path))
92
return config or {}
93
+
94
95
+def store_settings(module_name, settings):
96
+ config_path = path(join(module_name, CONFIG_FILE))
97
+ with click.open_file(config_path, 'w') as f:
98
+ f.write(yaml.dump(settings, default_flow_style=False))
0 commit comments