Skip to content

Commit 80a31f5

Browse files
committed
Add store_settings
1 parent 2285f08 commit 80a31f5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

changes/config.py

+6
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,9 @@ def project_config(context):
9090

9191
config = yaml.safe_load(click.open_file(config_path))
9292
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

Comments
 (0)