Remove test.yaml saving

This commit is contained in:
Nicolas Mowen 2024-04-17 06:58:57 -06:00
parent 1f1c1b9214
commit d6d75860b1

View File

@ -223,8 +223,6 @@ def update_yaml_file(file_path, key_path, new_value):
data = yaml.load(f)
data = update_yaml(data, key_path, new_value)
with open("/config/test.yaml", "w") as f:
yaml.dump(data, f)
with open(file_path, "w") as f:
yaml.dump(data, f)